7
我有一個控制器操作,它將一些JSON結果返回給jQuery Full Calendar插件。如果出現錯誤,我會返回HTTPStatusCodeResult
自定義錯誤消息,但是我無法獲取要顯示的自定義錯誤消息。一切都顯示在警告框,這是默認的HTTP狀態(即:「禁止」或「內部服務器錯誤」)HTTPStatusCodeResult&jQuery的自定義錯誤消息
控制器代碼,返回的錯誤信息
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);
}
},
我不知道爲什麼微軟有** NOT **修正了這個問題。今天我花了一個多小時或更多時間試圖看看我做錯了什麼。 – vcRobe 2017-03-30 17:25:41
我不知道現在有多少工程師在VS Web開發服務器上工作?我的猜測是0 – MrBliz 2017-03-30 17:30:52