轻松自动完成中止先前的ajax请求

时间:2018-06-20 05:26:04

标签: javascript jquery plugins easyautocomplete

我正在使用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);

1 个答案:

答案 0 :(得分:0)

 <local:CustomRichTextBox IsDocumentEnabled="True" IsReadOnly="True" CustomText="{Binding text}"
                                                />