在我的操作方法中,我返回:
catch (Exception ex)
{
return new HttpStatusCodeResult(500, "This is an error!");
}
在我的backbone.js fetch 中,我正在使用这个:
error: function(response, status, error) {
alert(response.statusText);
}
浏览器工具在状态下显示我的消息,但警报框显示未定义。
我在这个线程中看到了这个方法-> HTTPStatusCodeResult 和 jQuery 的自定义错误消息
知道为什么它不起作用吗?