I',在项目中使用剑道 ui 自动完成控件。自动完成从 WCF 服务获取数据,返回 JSON 格式的数据。在 html 页面中,我输入了以下代码:
$("#txtAutocomplete").kendoAutoComplete({
filter: "contains",
minLength: 3,
dataSource: {
type: "json",
serverFiltering: true,
serverPaging: true,
pageSize: 20,
transport: {
read: "http://localhost:52054/MyService.svc/Autocomplete"
}
}
});
WCF 服务可以这样调用:
http://localhost:52054/MyService.svc/Autocomplete/anyword
它以这样的 json 文件响应:
["abc1","abc2","abc3"]
但自动完成不起作用,我在 jquery.min.js 中遇到多个语法错误
有什么建议吗?谢谢你的时间!