2

嗯,这里有很多关于此的内容,但我似乎无法将 JSON 对象传递给 Web 服务对象。我能做的最接近这项工作的是这个例子,其中 ID 与服务中的字符串变量名称匹配,如下所示

        var jsonData = { "ID": "hello" };
        $.ajax({
            url: "http://blah/blah.svc/GetPersonByID",
            type: "POST",
            dataType: "jsonp",  // from the server
            contentType: "application/json; charset=utf-8", // to the server
            data: jsonData,
            success: function (msg) {
                alert("success " + msg.Name);
            },
            error: function (xhr, status, error) {
                alert(xhr.status + " " + status + " " + error);
            }
        });

WCF 服务在哪里

    [OperationContract]
    [Description("Returns a person by ID.")]
    [WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json,
        ResponseFormat = WebMessageFormat.Json)]
    Person GetPersonByID(string ID);

    public Person GetPersonByID(string ID) {
        Person person = new Person {
            Name = ID,   // "Bob",
            FavoriteColor = "Red",
            UserID = 1 //int.Parse(ID)
        };
        return person;
    }

这将返回“成功 ID=hello”。

为什么它返回 ID=hello,而不仅仅是 hello?

如果我使用 data: JSON.stringify({ "ID": "hello" }) 它会失败并出现 400 bad request

如果我尝试任何其他数据类型,例如 web 服务 ID 的 int(而不是字符串),如果失败。

如果我尝试任何更复杂的数据类型,它会失败。

有什么想法吗???谢谢

4

1 回答 1

4

默认情况下,WCF 操作预期的主体样式是“裸”,这意味着输入必须自己发送(即,它需要类似"hello". 在您的情况下,您将其包装在具有参数名称 ( {"ID":"hello"})的对象中.

您可以使操作期望包装的输入(通过将BodyStyle属性的WebInvoke属性设置为WebMessageBodyStyle.WrappedRequest(和 JSON.stringify 您的数据),或者更改传递给 $.ajax 的参数以简单地发送 JSON 字符串 ( data: "\"hello\"")。

于 2012-05-08T21:24:09.883 回答