我正在使用easyAutoComplete插件。我需要在新请求上中止先前的ajax请求。 这是我使用的插件的链接。 http://easyautocomplete.com/
我的代码是
var options = {
url: function (phrase) {
return "api/getData";
},
getValue: function (element) {
return element['name'];
},
ajaxSettings: {
dataType: "json",
method: "POST",
data: {
dataType: "json"
}
},
preparePostData: function (data) {
data.phrase = $(".name").val();
return data;
},
match: {
enabled: true
}
};
$(".name").easyAutocomplete(options);
答案 0 :(得分:0)
<local:CustomRichTextBox IsDocumentEnabled="True" IsReadOnly="True" CustomText="{Binding text}"
/>