当我尝试绑定此远程JSON数组
.children()
通过
[{"id":1,
"title":"Test 1",
"description":null,
"start":"2018-07-13T00:00:00",
"end":"2018-07-13T01:00:00",
"startTimezone":null,
"endTimezone":null,
"recurrenceId":null,
"recurrenceRule":null,
"recurrenceException":null,
"isAllDay":false},
{"id":2,
"title":"Test 2",
"description":null,
"start":"2018-07-13T03:00:00",
"end":"2018-07-13T04:00:00",
"startTimezone":null,
"endTimezone":null,
"recurrenceId":null,
"recurrenceRule":null,
"recurrenceException":null,
"isAllDay":false}
]
textStatus导致“ parsererror”
有任何建议/帮助!
谢谢 艾伦画家
答案 0 :(得分:0)
JSONP
数据时,使用 json
。当服务器将信息传递给来自不同服务器的客户端的请求时,将使用此功能。如果不使用JSONP,则这些类型的请求都会出错。
请参见
如果您的服务器将json数据直接返回到它已经在服务的页面上,请尝试datatype:'json'
。缺少返回的jsonp
值表示服务例程未检查或接受指定的入站dataType
。