javascript - Resource interpreted as Document but tran..

WBOY
发布: 2016-08-08 09:06:35
原创
1929 人浏览过

问题如题,我测试数据的时候,浏览器跳出Resource interpreted as Document but transferred with MIME type application/json: "http://localhost:82/js4-1.php?type=findnew&data=pic".的提示,是json数据类型错误了吗?

javascript - Resource interpreted as Document but tran..

php代码:
error_reporting(0);
header("Content-type:application/json;charset=utf-8;");
//测试数据连接
$icon=mysql_connect("localhost","root","");
if(!$icon){

<code>//失败
die('Could not connect:'.mysql_error());</code>
登录后复制
登录后复制

}
//连接数据库
mysql_select_db("news_data",$icon);
//设置中文
mysql_query("set names utf8");
//获取前台type,data参数
$type=@$_GET['type'];
$sleword=@$_GET['data'];
switch ($type) {

<code>//从主页前段到php
case 'findnew':
    $sql="select id,new_title,new_class from info_look";//创建查询语句
    $re=mysql_query($sql);//执行语句
    $wordArray=[];//创建空字符串承载获取到的数据
    while($row=mysql_fetch_array($re)){
        $wordArray[]=$row;//将结果赋值给数组
    }
    //下面打算用循环找到对应传递过来的data参数,匹配到了,就把他回传给前台
     for($i=0;$i<count if echo json_encode break case insertdata: into info_look values die . mysql_error title added></count></code>
登录后复制
登录后复制

}
mysql_close($icon);
?>

回复内容:

问题如题,我测试数据的时候,浏览器跳出Resource interpreted as Document but transferred with MIME type application/json: "http://localhost:82/js4-1.php?type=findnew&data=pic".的提示,是json数据类型错误了吗?

javascript - Resource interpreted as Document but tran..

php代码:
error_reporting(0);
header("Content-type:application/json;charset=utf-8;");
//测试数据连接
$icon=mysql_connect("localhost","root","");
if(!$icon){

<code>//失败
die('Could not connect:'.mysql_error());</code>
登录后复制
登录后复制

}
//连接数据库
mysql_select_db("news_data",$icon);
//设置中文
mysql_query("set names utf8");
//获取前台type,data参数
$type=@$_GET['type'];
$sleword=@$_GET['data'];
switch ($type) {

<code>//从主页前段到php
case 'findnew':
    $sql="select id,new_title,new_class from info_look";//创建查询语句
    $re=mysql_query($sql);//执行语句
    $wordArray=[];//创建空字符串承载获取到的数据
    while($row=mysql_fetch_array($re)){
        $wordArray[]=$row;//将结果赋值给数组
    }
    //下面打算用循环找到对应传递过来的data参数,匹配到了,就把他回传给前台
     for($i=0;$i<count if echo json_encode break case insertdata: into info_look values die . mysql_error title added></count></code>
登录后复制
登录后复制

}
mysql_close($icon);
?>

问题出在最后一句,前段期望返回的是'json',虽然你在pho头部设置了header,但是你看这句

'''Php

<code>echo "one title added!";</code>
登录后复制

'''

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!