当我使用json_encode($array)
时,我正确地获取了数据但是当我在循环的数组中使用json_encode时我得到以下错误
[object Object] parsererror SyntaxError:意外的标记{
我正在使用ajax从functions.php获取json数据
$(function() {
$('#get').click(function(){
$.ajax({
url: 'http://android.ezinfotec.com/functions.php',
type : 'GET',
data : 'method=getquestions',
dataType : 'json',
success : function(s) {
console.log(s);
},
error: function(XMLHttpRequest,textStatus,errorThrown)
{
console.log(XMLHttpRequest+' '+textStatus+' '+errorThrown);
}
});
});
});
functions.php
<?php
header('Content-type: application/json');
include("connect.php");
if($_GET['method'] == 'getquestions')
{
$query = mysql_query("select * from questions");
while($fetch = mysql_fetch_array($query))
{
$output = array(
"id" => $fetch['id'],
"answers" => $fetch['answers'],
"status" => $fetch['ans_status'],
"postedon" => substr($fetch['month'],0,3).' '.$fetch['day'].' '.$fetch['year'],
"question" => $fetch['question'],
"category" => $fetch['category'],
"parent" => $fetch['parentcategory'],
"authorid" => $fetch['author'],
"authorname" => $fetch['author_name']
);
echo json_encode($output);
}
}
在上面的php代码中,如果我删除while循环并简单地为变量定义自定义值,我会在html页面中获得完美的数据。
注意:没有跨域问题,因为除了getquestions();
您可以在http://android.ezinfotec.com/functions.php?method=getquestions
检查json输出答案 0 :(得分:3)
您需要将所有记录附加到一个数组,而将json_encode附加到其中。它失败了,因为多个json对象被发送回它只需要一个的页面。
$output = array();
while (...) {
$output[] = ...
}
// add a header too
header('Content-Type: application/json');
echo json_encode($output);
很抱歉,这不是完整的代码。通过我的手机执行此操作非常繁琐。
答案 1 :(得分:0)
我已经实现了我想要的目标,
@StuartWakefield感谢您的提示。
我做了以下操作以获得没有parseerror的正确json结果
$query = mysql_query("select * from questions");
while($fetch = mysql_fetch_array($query))
{
$output[] = array(
"id" => $fetch['id'],
"answers" => $fetch['answers'],
"status" => $fetch['ans_status'],
"postedon" => substr($fetch['month'],0,3).' '.$fetch['day'].' '.$fetch['year'],
"question" => $fetch['question'],
"category" => $fetch['category'],
"parent" => $fetch['parentcategory'],
"authorid" => $fetch['author'],
"authorname" => $fetch['author_name']
);
}
echo json_encode($output);
}
使用while循环生成的每条记录都存储在另一个数组($ output [])中,一旦while循环耗尽,我只需对$ output数组进行编码