嗨朋友们,任何人都可以为我这个PLZ。我刚开始这一章..我正在尝试从PHP获取JSON格式值但是在运行时我得到了这个输出“SyntaxError:JSON.parse:unexpected characte”..我想我在php转换中做错了... plz帮帮我的朋友
我的 .html 文件
<html>
<head>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<title>Display Page</title>
</head>
<body>
<button type='button' id='getdata'>GetData.</button>
<button type='button' id='get'>sample</button>
<script type='text/javascript'>
$('#get').click(function() {
alert("laksjdflk");
});
$(document).ready(function() {
$('#getdata').click(function() {
$.ajax({
url:'neww.php' ,
dataType:'json' ,
success:function(output_string) {
alert(output_string);
},
error:function(xhr,ajaxOptions,thrownError){
alert(xhr.statusText);
alert(thrownError);
}
});
});
});
</script>
</body>
</html>
generatephp.php
<?php
mysql_connect("localhost","root","");
mysql_select_db("androidlogin");
$sql=mysql_query("SELECT* FROM trysave");
$temp="";
$i=0;
while($row=mysql_fetch_assoc($sql)){
$temp=$row['stringss'];
$temp.=$row['integerr'];
$array[i]=$temp;
i++;
}
echo json_encode($array);// this will print the output in json
?>
答案 0 :(得分:2)
这可能是因为Undefined array variable notice
,如果没有define array
records found
你错过了$
variable i
之前的错误(被视为常态,在代码中未定义),i
应该是$i
喜欢,< / p>
$array=array();// define here to prevent from "Notice"
while($row=mysql_fetch_assoc($sql))
{
$temp=$row['stringss'];
$temp.=$row['integerr'];
$array[$i]=$temp;// use $ before i
$i++;// use $ before i
}
echo json_encode($array);// this will print the output in json
您提到的另一件事 PHP文件名为generatephp.php
而您在url:'neww.php' ,
中使用的是$.ajax()
,您必须检查一次代码。< / p>
答案 1 :(得分:1)
除了明显的问题( cough MySQL_ *)之外,您的PHP文件应该在响应头中指定输出将是JSON类型。输出默认为text/html
,Javascript无法将其解析为有效的JSON对象。
你可以这样做
<?php
header('Content-type: application/json');
// Rest of the code remains intact
答案 2 :(得分:1)
我会使用不同的东西......
php:
<?php
mysql_connect("localhost","root","");
$sql=mysql_query("SELECT stringss, integerr FROM androidlogin.trysave");
$temp=array();
$i=0;
while($row=mysql_fetch_assoc($sql)){
$temp[] = $row;
}
echo json_encode($temp);// this will print the output in json
?>
//你不需要$ i变量,因为你将获得java str.length = that $ i
<script type='text/javascript'>
$('#get').click(function() {
alert("laksjdflk");
});
$(document).ready(function() {
$('#getdata').click(
function() {
jQuery.getJSON( "neww.php") //no get vars
.done(function(a) {
//console.clear();
console.log(a);
show_data(a);
})
.fail(function(a) {
console.log( "error" );
});
});
});
function show_data(a){
for(var i=0; i<a.length; i++)
var stringss = a[i].stringss;
var integerr = a[i].integerr;
var nuber_temp = i;
//do stuff with them ...
}
</script>
如果问题仍然存在......请尝试http://php.net/manual/ro/function.urlencode.php