0

我正在尝试使用 jQuery AutoComplete,但我得到的只是一个包含所有结果的单个项目。

我有这个 ASP.Net WebMethod:

[WebMethod]
public static string FetchCompletionList(string term)
{
    var json = JsonConvert.SerializeObject(CustomerProvider.FetchKeys(term, 8));
    return json;
}

被此脚本调用:

$("[id$='txtLKey']").autocomplete({
            minlength: 2,
            source: function(request, response) {

                $.ajax({

                    type: "POST",
                    url: "/Views/Crm/Json/Json.aspx/FetchCompletionList",
                    data: '{term: "' + $("[id$='txtLKey']") .val() + '", count: "8"}',
                    contentType: "application/json; charset=utf-8",
                    dataType: "json",
                    success: function (data) {
                        response(data);
                    },
                    error: function (jqXHR, textStatus, errorThrown) {
                       alert(jqXHR.responseText);
                       alert(textStatus);
                       alert(errorThrown.toString());
                    }
                });

            }
        });

结果是这样的:

在此处输入图像描述

当我真正想要的是用户可以选择的选项列表时,即每个 NZ 应该是列表中的一个项目。

4

1 回答 1

0

这里有两个问题,

  1. 你需要传递data.dresponse喜欢response(data.d)
  2. 您的值字符串无效,应该是{"d":["NZ0008","NZ0015","NZ0017","NZ0018","NZ0026","NZ0027","NZ003??1","NZ0035"‌​]}
于 2013-06-03T03:41:05.800 回答