带有 HTTPStatusCodeResult 和 jQuery 的自定义错误消息
Posted
技术标签:
【中文标题】带有 HTTPStatusCodeResult 和 jQuery 的自定义错误消息【英文标题】:Custom Error message with HTTPStatusCodeResult & jQuery 【发布时间】:2012-05-08 01:16:14 【问题描述】:我有一个控制器操作,可以将一些 JSON 结果返回到 jQuery Full Calendar 插件。如果出现错误,我会返回带有自定义错误消息的HTTPStatusCodeResult
,但我无法显示自定义错误消息。警告框中显示的只是默认的 Http 状态(即:“禁止”或“内部服务器错误”)
返回错误信息的控制器代码
else if(id != CurrentUser.UserId)
return new HttpStatusCodeResult(403, "You are not authorised to view this.");
else
return new HttpStatusCodeResult(500, "There was an error on the server.");
jQuery 代码
$(document).ready(function ()
$('#calendar').fullCalendar(
header:
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
,
height: 600,
eventSources: [
url: events,
type: 'Get',
error: function(response, status, error)
alert(response.statusText);
],
allDayDefault: false,
selectable: true,
eventClick: function (event)
if (event.url)
$('#details').load(event.url);
,
【问题讨论】:
【参考方案1】:实际上代码中没有任何问题。问题出在 Visual Studio 中的 ASP.NET 开发 Web 服务器上。我切换到使用 IIS express,它工作正常。
【讨论】:
我不知道为什么微软没有修复了这个问题。我今天花了一个小时或更长时间试图看看我做错了什么。 不知道现在有多少工程师在做 VS Web 开发服务器?我的猜测是 0以上是关于带有 HTTPStatusCodeResult 和 jQuery 的自定义错误消息的主要内容,如果未能解决你的问题,请参考以下文章