我正在尝试在标准 mvc 应用程序中实现这个 web api 自动完成。 http://techbrij.com/987/jquery-ui-autocomplete-asp-net-web-api
这是来自 Firebug http://sdrv.ms/N0WkHP的屏幕截图
我创建了一个控制器方法并添加了 jquery 脚本,但我不断收到“JSON.parse:意外字符”错误。我的数据中没有看到任何异常字符。
$(document).ready(function () {
$('#txtSearch3').autocomplete({
source: function (request, response) {
$.ajax({
url: '/home/Get',
type: 'GET',
cache: false,
data: request,
dataType: 'json',
success: function (json) {
// call autocomplete callback method with results
response($.map(json, function (name, val) {
return {
label: name,
value: val
}
}));
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
//alert('error - ' + textStatus);
console.log('error', textStatus, errorThrown);
}
});
},
minLength: 2,
select: function (event, ui) {
alert('you have selected ' + ui.item.label + ' ID: ' + ui.item.value);
$('#txtSearch3').val(ui.item.label);
return false;
}
})
});
// 我的控制器代码
public IDictionary<int, string> Get(string term)
{
using (myEntities context = new myEntities())
{
return context.Categories1.Where(x => x.CategoryName.Contains(term)).ToDictionary(x => x.CategoryId, x => x.CategoryName);
}
}