请有人帮助我。
我的问题是,当我使用ajax windows phone 8(phonegap app)调用.net webservice时,我得到错误"对象引用未设置为对象的实例"在POST方法中json formate发送数据。
在服务器端json上的将所有值都接收为null。
我的ajax是
$.ajax({
type: "POST",
url: url,
data: JSON.stringify(data),
contentType: "application/json; charset=utf-8",
dataType: "json",
processData: true,
success: function (data, status, jqXHR) {
console.log(jqXHR.getAllResponseHeaders()+"ajax.responseText==>" + jqXHR.responseText);
},
error: function (xhr) {
console.log(xhr.responseText+"<==ajax.getAllResponseHeaders==>"+xhr.getAllResponseHeaders());
}
});
答案 0 :(得分:0)
在发送
之前不要对数据进行字符串化