Error - Error: Uncaught SyntaxError: Unexpected token :
平台-Icenium。
我们正在使用远程服务 -http://localhost:35798/RestServiceImpl.svc/json
这将获取数据。我在从服务接收到的数据中附加了格式。
这是我的代码:
var dataSource = new kendo.data.DataSource({
schema: {
data: "d"
},
transport: {
read: {
url: "http://localhost:35798/RestServiceImpl.svc/json",
dataType: "jsonp", // "jsonp" is required for cross-domain requests; use "json" for same-domain requests
data: {
id: "4"
},
type: "GET",
contentType: "application/json;charset=utf-8"
},
change: function () {
alert('called');
var data = this.data();
console.log(data.length); // displays "77"
debugger;
$('#txtJson').val(data[0].name);
}
}
});
$("#submitButton").click(function () {
dataSource.read();
var data = dataSource.data();
console.log(data.length);
});
这是我的服务代码-
[OperationContract]
[WebInvoke(Method = "GET",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "json?id={id}")
]
List<Person> JSONData(string id);
Q 1) 如何解决这个错误 - Uncaught SyntaxError: Unexpected token
,我错过了什么吗?
Q 2)点击按钮后我打电话dataSource.read()
,之后dataSource.data().length
得到0。我认为这应该是处理dataSource.bind(change:function())
。但是,dataSource.read()
更改后功能不会触发。