如何评估传入的输入?以下是我尝试获取 JSON 输入的方式:
var store =new Ext.data.Store({
autoLoad : true,
proxy : new Ext.data.HttpProxy({
url: '../../../SomeWebService/Service.svc/XmlToJSON/0',
method: 'POST'
}),
reader: new Ext.data.JsonReader(
{
id: '_id',
root: 'ROOT.I',
totalProperty: 'total',
successProperty: 'success'
},
record
)/* ,
data:data */
});
下面是我作为字符串/文本得到的网络服务的输出:
"{ \"Doc\": {\"I\": {\"ID\": \"1010\", \"ID1\": \"True\", \"ID2\": \"-1\", \"ID3\": \"1\", \"FD\": \"10\", \"ID4\": \"mm\" } }}"
我的实际输入必须是这样的:
"{ "Doc": {"I": {"ID": "1010", "ID1": "True", "ID2": "-1", "ID3": "1", "FD": "10", "ID4": "mm" } }}"
但读者没有阅读网络服务的这个输出,请帮助。