在我的应用程序中,我得到一个 Uncaught SyntaxError: Unexpected token : when using getJSON to fetch JSON from server.
这是我使用的 javascript:
$('#employeeListPage').bind('pageinit', function(event) {
getEmployeeList();
});
setInterval ( "getEmployeeList()", 10000 );
var vanhadata = "";
function getEmployeeList() {
$.getJSON(serviceURL + 'getemployees.php?autonumero=' + autonumero + 'callback=?', function(data) {
if(JSON.stringify(data) != JSON.stringify(vanhadata)){
$('#employeeList li').remove();
employees = data.key;
$.each(employees, function(index, employee) {
$('#employeeList').append('<li><a href="keikka.html?id=' + employee.IND + '">' +
'<h4>' + employee.OSO + '</h4>' +
'<img src="pics/' + employee.TILA + '.png"/>' +
'<p>' + employee.AIKA + '</p>' +'</a></li>');
});
$('#employeeList').listview('refresh');
if(vanhadata != "")
alert("Uusia keikkoja!");
vanhadata = data;
}
});
}
来自服务器的 JSON 响应似乎是正确的,但它显示错误并且没有显示任何数据。控制台还打印:"Resource interpreted as Script but transferred with MIME type text/html:"
这是 JSON 响应:
{
"key": [
{
"NIMET": "Tuntematon",
"PERHJAS": "0",
"SAATTAJA": "0",
"m_yht": "0",
"OSO": null,
"AIKA": "2010-03-11 10:00:00",
"OSOITELAJI": "0",
}
]
}UncaughtSyntaxError: Unexpectedtoken:
和 getemployees.php:
<?php
header('Content-Type: application/json; charset=UTF-8');
include 'config.php';
$number = $_GET['autonumero'] ;
$sql = "select * from table where number=\"$number\"";
try {
$dbh = new PDO("mysql:host=$dbhost;dbname=$dbname", $dbuser, $dbpass);
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$stmt = $dbh->query($sql);
$employees = $stmt->fetchAll(PDO::FETCH_OBJ);
$dbh = null;
echo '{"key":'. json_encode($employees) .'}';
} catch(PDOException $e) {
echo '{"error":{"text":'. $e->getMessage() .'}}';
}
?>
当修改 PHP 文件为:
if ($_GET['callback'])
print $_GET['callback']."(";
echo '{"key":'. json_encode($results) .'}';
if ($_GET['callback'])
print ")";
} catch(PDOException $e) {
echo '{"error":{"text":'. $e->getMessage() .'}}';
}
我得到的回应是:
<br />
<font size='1'><table class='xdebug-error' dir='ltr' border='1' cellspacing='0' cellpadding='1'>
<tr><th align='left' bgcolor='#f57900' colspan="5"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> Parse error: syntax error, unexpected T_CATCH in C:\Services\getemployees.php on line <i>40</i></th></tr>
</table></font>
所以它根本不是 JSON。