以下代码中的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响应头中我可以看到JSON响应以下列方式被错误地(?)转义:
{"d":"{\"field1\":value1,\"field2\":value2}"}
奇怪的是控制台打印很好(但尚未封装在{d:...}
{"field1":value1,"field2":value2}
使用类似的代码,如果我调用返回基本类型(无对象)的[WebMethod],JSON响应就可以了。像:
{ “d”:8080}
答案 0 :(得分:6)
[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,然后再次对其进行序列化:(
答案 1 :(得分:3)
你为什么要调用JavaScriptConvert.SerializeObject?
难道你不能只将你的方法的返回类型更改为pu.getMyObject()返回的类型,框架将完成其余的工作吗?
换句话说......
[WebMethod (Description="doc here")]
[ScriptMethod(ResponseFormat=ResponseFormat.Json)]
public MyObjectType responseMyObject()
{
Proxy pu = new Proxy(...);
...
return pu.GetMyObject();
}
目前我认为您将对象序列化为JSON格式,然后,当您从方法返回时,框架将该字符串(包含JASON格式的数据)序列化为JSON格式。