在我的控制器中,我返回布尔值true或false,并在我的JavaScript中检查它。
我意识到我得到的是“真实”,而不是真实,而对于虚假则相同。
我不想检查我的客户端结果==“True”。有什么方法吗?
public async Task<bool> Send(string message)
{
try
{
return await RystadGlobal.api.ContactSupport(message);
}
catch (Exception e)
{
throw new Exception(e.Message);
}
}
$.ajax({
type: "GET",
url: '/ClientHelpPage/Send',
data: data,
success: function (data, textStatus, jqXHR) {
if (data == true) {
success.removeClass("hide");
} else {
error.removeClass("hide");
}
},
error: function (xhr, ajaxOptions, thrownError) {
error.removeClass("hide");
}
});