我有下面的 jquery,它获取 Web 服务返回的 JSON 对象,但大多数时候我得到一个解析器错误。
$.ajax({
type: "GET",
url: 'scripts/php/fetchProbableDrivers.php',
dataType: 'json',
data: {'tripId' : tripId },
error: function(e)
{
alert(JSON.stringify(e, null, 4));
},
success: function(drivers){
}
有人可以帮我吗?