您好,我正在使用 framework7 进行新开发以制作应用程序,我的问题是当我连接到 web 服务时,我将其发送到我的 controller.js
var postdata = {};
postdata.cantidad = cantidad;
postdata.ultimoValor = ultimoValor;
postdata.id = id;
myApp.showIndicator();
$$.post('http://192.168.0.134:8090/Test.asmx/GetCliente', {cantidad:'5', ultimoValor:'0',id:'0'}, function (data) {
myApp.hideIndicator();
console.log(data);
});
“数据”接收响应,控制台以 xml 打印,我需要的是 json 来使用它。
我怎样才能改变它?如果你能用一个例子来解释我,我会很棒吗?