Kendo Scheduler数据源解析器错误引发

时间:2018-07-13 18:06:30

标签: kendo-ui datasource scheduler

当我尝试绑定此远程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”

有任何建议/帮助!

谢谢 艾伦画家

1 个答案:

答案 0 :(得分:0)

服务器将以 callback_function the-json )的形式传递JSONP数据时,使用

json。当服务器将信息传递给来自不同服务器的客户端的请求时,将使用此功能。如果不使用JSONP,则这些类型的请求都会出错。

请参见

如果您的服务器将json数据直接返回到它已经在服务的页面上,请尝试datatype:'json'。缺少返回的jsonp值表示服务例程未检查或接受指定的入站dataType