我已经启动并运行了网络服务。当我使用我的 asp.net 应用程序通过 jquery 调用它时,它工作正常,但使用 jquery mobile 我收到一条 500 错误消息而没有结果。我不确定为什么会这样。如果有人对此有任何了解,请告诉我。谢谢。
编辑:我刚刚注意到我的请求说请求方法:选项。
Javascript
var parameter = {
'userName': emailLogin, 'password': passwordLogin
};
parameter = JSON.stringify(parameter);
$.ajax({
type: "POST",
url: "http://myurl.com/MainService.asmx/LoginMobile",
contentType: "application/json; charset=utf-8",
data: parameter,
dataType: "json",
success: function (result) {
if(result.d) {
showErrorDialogMessage('Login error', result.d);
} else {
showErrorDialogMessage('Login error', 'Incorrect email and password combination.');
}
},
error: function (jqXHR, textStatus, errorThrown) {
showErrorDialogMessage('Login error', textStatus);
}
});