Smartface 转换 json
Smartface convert json
我的代码如下。我想获取JSON中的数据。但是数据以 XML 的形式出现。我该如何解决这个问题?
var wc = new SMF.Net.WebClient({
URL:"http://192.168.41.179/TestWS/ws.asmx/myComments",
httpMethod:"GET",
requestHeaders: ["content-type", "application/json"],
onSyndicationSuccess: function(e) {
deger = wc.response;
}
});
wc.run(true);
我解决了我的问题。为此,我们需要使用 WebAPI。
我的代码如下。我想获取JSON中的数据。但是数据以 XML 的形式出现。我该如何解决这个问题?
var wc = new SMF.Net.WebClient({
URL:"http://192.168.41.179/TestWS/ws.asmx/myComments",
httpMethod:"GET",
requestHeaders: ["content-type", "application/json"],
onSyndicationSuccess: function(e) {
deger = wc.response;
}
});
wc.run(true);
我解决了我的问题。为此,我们需要使用 WebAPI。