ajax成功:函数()
ajax success: Function()
我正在使用这个函数:
function ProcessToken(token) {
$.ajax({
type: "POST",
url: "HomePage.aspx/ProcessCard",
data: '{Token: "' + token + '" }',
contentType: "application/json; charset=utf-8",
dataType: "json",
failure: Failure,
success: function(R) {
var response = R.d
alert(response)
if (response = true) {
alert("True")
$form.find('.subscribe').html('Payment successful <i class="fa fa-check"></i>');
} else {
alert("False")
$form.find('.subscribe').html('Try again').prop('disabled', false);
$form.find('.payment-errors').text('Something went wrong, please try again.');
$form.find('.payment-errors').closest('.row').show()
}
}
});
}
这就是我想要做的 return
<WebMethod()> _
Public Shared Function ProcessCard(ByVal Token As String) As Boolean
Return False
End Function
即使第一个警报(响应)确实显示 false,我也无法使 else 语句发生。 if (response = true) 总是显示 alert("True")。我不太擅长 java,所以不确定如何正确阅读回复。我也试过数据类型:"text"。
我想确保在 if else 语句中正确读取 true 或 false。
您应该在 if 语句中使用 javascript 比较运算符 == 或 ===:
if (response === true) {
....
}
我正在使用这个函数:
function ProcessToken(token) {
$.ajax({
type: "POST",
url: "HomePage.aspx/ProcessCard",
data: '{Token: "' + token + '" }',
contentType: "application/json; charset=utf-8",
dataType: "json",
failure: Failure,
success: function(R) {
var response = R.d
alert(response)
if (response = true) {
alert("True")
$form.find('.subscribe').html('Payment successful <i class="fa fa-check"></i>');
} else {
alert("False")
$form.find('.subscribe').html('Try again').prop('disabled', false);
$form.find('.payment-errors').text('Something went wrong, please try again.');
$form.find('.payment-errors').closest('.row').show()
}
}
});
}
这就是我想要做的 return
<WebMethod()> _
Public Shared Function ProcessCard(ByVal Token As String) As Boolean
Return False
End Function
即使第一个警报(响应)确实显示 false,我也无法使 else 语句发生。 if (response = true) 总是显示 alert("True")。我不太擅长 java,所以不确定如何正确阅读回复。我也试过数据类型:"text"。
我想确保在 if else 语句中正确读取 true 或 false。
您应该在 if 语句中使用 javascript 比较运算符 == 或 ===:
if (response === true) {
....
}