使用 JSON 的网络和 Web 方法
我的 webmethod 返回值给出为
return ResultValue;
// which gives 1 as Return Value on SUcessfull insertion
如果返回值为 1,我希望它在我的 JQuery 中显示为成功
为此,我应该如何捕获我的 webmethod 中的返回值?
$.ajax({
url: 'mypage.html',
success: function(data){
if(data ==1)
alert('success');
else
alert('failure');
},
error: function(){
alert('failure');
}
});
http://api.jquery.com/jQuery.ajax/
或者您在 webmethod 中为您的 Response 对象设置状态代码。像这样的东西:
Response.Clear();
Response.StatusCode = 500; // or whatever code is appropriate
Response.End;
在你的 ajax 代码上试试这个:
$.ajax({
type: "POST",
success: function(data) {
//data=ResultValue
if(data == 1)
{ // Success Stuff }else {//do stuff}
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert("error: " + XMLHttpRequest.responseText);
},
dataType: 'json'
});
此致