我在控制器中有一个如下所示的方法:
[HttpPost]
public void UnfavoriteEvent(int id)
{
try
{
var rows = _connection.Execute("DELETE UserEvent WHERE UserID = (SELECT up.UserID FROM UserProfile up WHERE up.UserName = @UserName) AND EventID = @EventID",
new { EventID = id, UserName = User.Identity.Name });
if (rows != 1)
{
Response.StatusCode = 500;
Response.Status = "There was an unknown error updating the database.";
//throw new HttpException(500, "There was an unknown error updating the database.");
}
}
catch (Exception ex)
{
Response.StatusCode = 500;
Response.Status = ex.Message;
//throw new HttpException(500, ex.Message);
}
}
正如你所看到的,我已经尝试了几种不同的方法来抛出这个错误。在JavaScript中,我有以下块来调用此方法:
var jqXHR;
if (isFavorite) {
jqXHR = $.ajax({
type: 'POST',
url: '/Account/UnfavoriteEvent',
data: { id: $("#EventID").val() }
});
}
else {
jqXHR = $.ajax({
type: 'POST',
url: '/Account/FavoriteEvent',
data: { id: $("#EventID").val() }
});
}
jqXHR.error = function (data) {
$("#ajaxErrorMessage").val(data);
$("#ajaxError").toggle(2000);
};
现在,我想要做的是将错误发生回jqXHR.error
函数,以便我能够正确处理它。
目前取消注释的代码抛出一个异常,说明我放置在Status
中的文本是不允许的,并且注释代码实际上返回标准错误页面作为响应(实际上并不奇怪)。 / p>
所以,我有几个问题:
Response.Status
属性有什么作用?全部谢谢!
答案 0 :(得分:3)
您将能够从javascript端获取响应状态,执行以下操作:
$.ajax({
type: 'POST',
url: '/Account/UnfavoriteEvent',
data: { id: $("#EventID").val() },
success: function(data, textStatus, jqXHR) {
// jqXHR.status contains the Response.Status set on the server
},
error: function(jqXHR, textStatus, errorThrown) {
// jqXHR.status contains the Response.Status set on the server
}});
如您所见,您必须将error
的函数传递给ajax
函数...在您的示例中,您将函数设置为error
属性{{ 1}}完全没有效果。
有关ajax事件的文档
jQuery docs说错误字符串将出现在jqXHR
参数中。
请勿使用响应
相反,您应该返回errorThrown
:
HttpStatusCodeResult
答案 1 :(得分:1)
使用Response.StatusDescription
。在jQuery方面,使用jqXHR.fail(function(){})
。