gpt4 book ai didi

asp.net - 使用 [WebMethod] 转义 JSON 响应

转载 作者:行者123 更新时间:2023-12-04 23:11:09 25 4
gpt4 key购买 nike

来自以下代码的 JSON 响应被错误地转义,如下所述。

我的网络方法是这样的:

    [WebMethod (Description="doc here")]
[ScriptMethod(ResponseFormat=ResponseFormat.Json)]
public string responseMyObject() {
if (!Setup()) return "";

...
Proxy pu = new Proxy(...);
...

string toReturn = JavaScriptConvert.SerializeObject(pu.getMyObject());
Console.WriteLine(toReturn);
return toReturn;
}

从控制台我得到:
{"field1":vaule1,"field2":value2}

来自JS:
$.ajax({
type: "POST",
url: "/myapi/myClass.asmx/responseMyObject",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
var object = msg.d;
alert(object.field1);
}
});

问题是,在 HTTP 响应 header 中,我可以看到 JSON 响应以以下方式错误地 (?) 转义:
{"d":"{\"field1\":value1,\"field2\":value2}"}

奇怪的是控制台打印是好的(但还没有封装在 {d: ...}
{"field1":value1,"field2":value2}

使用类似的代码,如果我调用返回基本类型(无对象)的 [WebMethod],JSON 响应就可以了。喜欢:

{"d":8080}

最佳答案

[WebService]
[ScriptService]
public class MyWebService : WebService
{

[WebMethod (Description="doc here")]
[ScriptMethod( UseHttpGet=false, ResponseFormat=ResponseFormat.Json)]
public MyObjectType responseMyObject()
{
Proxy pu = new Proxy(...);

return pu.GetMyObject();
}

}

您不需要 JSON 序列化程序,使用 ScriptService 属性标记它可以使其具有将 JSON 序列化的能力。您正在对 JSON 进行预序列化,然后再次对其进行序列化 :(

关于asp.net - 使用 [WebMethod] 转义 JSON 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/811353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com