2

非常古老的 1.1 vb.net / asp.net 网络应用程序。我正在尝试进行 ajax 调用以使用以下内容填充自动完成文本框:

    $("#ucAddActionItemIssueActions_txtActionItem")
// don't navigate away from the field on tab when selecting an item
.bind("keydown", function(event) {
    if (event.keyCode === $.ui.keyCode.TAB && $(this).data("autocomplete").menu.active) {
        event.preventDefault();
    }
}).autocomplete({
    minLength: 0,
   source: function (request, response) {
        //get client value
        var c = $("#ucAddActionItemIssueActions_ddlClientAssignTo").val();
         var params= '{"ClientID":' + c + '}';
        $.ajax({
            url: "GetLogins.asmx/GetLogins",
            data: params,
            dataType: "json",
            type: "POST",
            contentType: "application/json; charset=utf-8",
            dataFilter: function (data) { return data; },
            success: function (data) {
                response($.map(data.d, function (item) {
                    return {
                        value: item.name
                    }
                }))
            },
            error: function (XMLHttpRequest, textStatus, errorThrown) {
                alert(textStatus);
            }
        });},
    focus: function() {
        // prevent value inserted on focus
        return false;
    },
    select: function(event, ui) {
        var terms = split(this.value);
        // remove the current input
        terms.pop();
        // add the selected item
        terms.push(ui.item.value);
        var email = GetEmail(ui.item.value);
        email = email + ";";
        emails.push(email);
        $("#ucAddActionItemIssueActions_hdnEmails").val(emails.join(""));
        // add placeholder to get the comma-and-space at the end
        terms.push("");
        this.value = terms.join("");
        return false;
    }
});

Web 方法(.asmx 文件)是这样的(仅作为测试用例):

Imports System.Web.Services
Imports System.Collections
<System.Web.Services.WebService(Namespace := "http://tempuri.org/quikfix.jakah.com/GetLogins")> _
Public Class GetLogins
    Inherits System.Web.Services.WebService

    <WebMethod()> _
    Public Function GetLogins(ByVal ClientID As Integer) As String()
        Dim myList As New ArrayList
        myList.Add("jstevens")
        myList.Add("jdoe")
        myList.Add("smartin")

        Dim arr() As String = CType(myList.ToArray(Type.GetType("System.String")), String())
        Return arr
    End Function
End Class

在 chrome 的开发人员工具中运行我的应用程序时,它会引发内部 500 错误。当我点击它时,它说:

System.InvalidOperationException:请求格式无效:application/json;字符集=UTF-8。在 System.Web.Services.Protocols.HttpServerProtocol.ReadParameters() 在 System.Web.Services.Protocols.WebServiceHandler.Invoke() 在 System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()

参数都匹配,所以我不确定为什么会抛出错误。我是否需要web.config文件中的任何内容来明确引用我的 .asmx 文件?这是一个旧的 1.1 .net Web 应用程序,所以我不确定是否需要对 web.config 文件进行任何更改?

4

1 回答 1

0

如果您将 .NET 1.1 用于 Web 服务和应用程序,则该 Web 服务将不知道如何解释 JSON。有很多情况会产生您遇到的错误,但我注意到您遇到的错误发生在一个名为ReadParameters. 所以我专注于参数:

var params= '{"ClientID":' + c + '}';

我第一次看过去。我不是 1.1 Web 服务专家,也不是 AJAX 专家,但除非我大错特错,否则对于 1.1 Web 服务,JSON 只是一个字符串。Web 服务无法解释(或返回)JSON。

所以我会尝试将您的单个参数作为 int 传递:

var params = c;

看看有什么不同。

于 2013-02-18T18:53:51.230 回答