0

我正在尝试使用 jQuery 调用 .NET asmx Web 服务。我一直在这里这里使用指南,据我所知,我已经完全按照他们的要求进行操作。

服务代码:

[WebService(Namespace = "http://tempuri.org/", Description = "...")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
[ScriptService]
public class MyService : WebService
{

    private static readonly IKernel NinjectKernel = new StandardKernel(new IocModule());

    [ScriptMethod(ResponseFormat = ResponseFormat.Json)]
    [WebMethod]
    public string HelloWorld(string name)
    {
        return string.Format("Hello {0}", name);
    }

我可以愉快地浏览 Firefox 中的服务并调用 HelloWorld 方法。

客户端 jQuery:

    if (ajaxRunning) {
        return;
    }
    ajaxRunning = true;

    var webMethod = "http://localhost:51546/MyService.asmx/HelloWorld";
    var inputname = "Jack";

    $("[id$='spinner']").show();
    $("[id$='spinnerText']").show();

    $.ajax({
        type: "POST",
        url: webMethod,
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        data: {name: inputname},
        success: function (msg) {
            $("[id$='spinner']").hide();
            $("[id$='spinnerText']").hide();
            ajaxRunning = false;
            alert(msg.d);
        },
        error: function() {
            $("[id$='spinner']").hide();
            $("[id$='spinnerText']").hide();
            ajaxRunning = false;
            alert("Fail");
        }
    });

当我运行 javascript 时,Firebug 中没有错误,只是弹出失败警报。请告诉我我是否做错了什么?

提前致谢

4

1 回答 1

1

需要对发送到 WebService 的参数进行字符串化。这:

data: {name: inputname}

需要替换为:

data: JSON.stringify({name: inputname})
于 2014-05-19T12:55:13.970 回答