我处于能够弄清楚我错在哪里的情况。 我使用jquery调用Web服务。它正常工作,因为它调用webmethod完成操作。但它调用函数服务失败的错误条款而不是成功的$ .ajax调用
如果服务是successfule,它应该提醒我'hi'。但是它正在调用ServiceFailed函数,但是当我输入并使用$ .ajax调用传递给服务时,数据库值会完美更新
我的j查询代码是休闲
function ActionSendRequest() {
if (globArray.length > 0) {
alert(globArray.length);
document.getElementById('lblError').innerHTML = 'Please Wait.....';
for (var i = 0; i < globArray.length; i++) {
var Lot = globArray[i];
var Price = document.getElementById('prc' + globArray[i]).value;
var Quantity = document.getElementById('qty' + globArray[i]).value;
$.ajax({
type: "POST",
url: "../test.asmx/AddModReqSample",
data: "{Lot:'" + Lot + "',Price:'" + Price + "',Quantity:'" + Quantity + "'}",
contentType: "application/json; charset=UTF-8",
dataType: "xml",
processdata: true,
success: function (msg) {
ServiceSucceeded(msg);
},
error: ServiceFailed
});
}
}
}
function ServiceSucceeded(result) {
alert('hi');
if (result.d == "Error") {
}
else if (result.d == "Successfully") {
}
}
function ServiceFailed(result) {
document.getElementById('lblError').innerHTML = 'Service call failed: ' + result.status + '' + result.statusText;
}
我的WebService方法是休闲
[WebMethod(EnableSession = true)]
public string AddModReqSample(int Lot,decimal Price,decimal Quantity) {
if (SessionLog.UID != 0)
{
return objDataStore.ReqSample(Lot, SessionLog.UID, Quantity,Price);
}
else return "Please Login to the System";
} 我得到的最终消息是这样的 服务呼叫失败:200 OK
答案 0 :(得分:1)
在查看响应和代码更多时间之后,我遇到了问题,我在json格式的webmethod响应,而我正在查看xml格式的数据,正如你在上面的代码中看到的那样 dataType:“xml”,我改为json,现在我正确地得到它。 谢谢你们每个人