我试图通过ajax调用将缓存添加到下面的代码中。在我第一次自动完成工作时添加缓存后,第二次显示空白时,代码可以正常缓存。我在这里做错了什么?
我的代码
$(document).ready(function () {
$("#MainContent_txtSurname").autocomplete({
source: function (request, response) {
var term = request.term;
if (term in cache) {
response(cache[term]);
return;
}
$.ajax({
crossDomain: true,
type: 'POST',
url: "http://localhost:1448/GetSurnames",
dataType: 'json',
data: { "Name": request.term, "CID": CID },
processdata: true,
success: function (result) {
var Surnames = JSON.parse(result.data);
cache[term] = Surnames;
response($.map(Surnames, function (item) {
return {
label: item.homename,
value: item.homename
}
}));
},
error: function (a, b, c) {
debugger;
}
});
},
minLength: 2
});
});
返回的数据是:
{"data":"[{\"id\":3,\"homename\":\"D\\u0027Costa\"}]"}
答案 0 :(得分:2)
尝试缓存自动完成插件的正确格式数据。关于你的Ajax成功:
success: function (result) {
var Surnames = JSON.parse(result.data);
cache[term] = $.map(Surnames, function (item) {
return {
label: item.homename,
value: item.homename
}
});
response(cache[term]);
}