我在使用資源日視圖(來源:https://github.com/ikelin/fullcalendar)返回FullCalendar 1.5.4中的數組時遇到問題。
這裏我的控制器:嘗試在fullCalendar中顯示資源時出錯
[HttpPost]
public JsonResult GetResources()
{
var data =db.Patients.ToList();
return Json(data.Select(i => new
{
id = i.PatientID,
name = i.FirstName + " " + i.LastName
}),JsonRequestBehavior.AllowGet);
}
這裏我的觀點:
var calendar = $('#calendar').fullCalendar({
defaultView: 'resourceDay',
resources: function (callback) {
$.ajax({
type: "post",
url: '@Url.Action("GetResources", "Patient")',
success: function (d) {
var listOfResources = [];
for (var i = 0, len = d.length; i < len; i++) {
var item = d[i];
listOfResources.push(item);
console.log(listOfResources[i].name);
}
callback(listOfResources);
},
error: function (e) {
debugger;
}
});
}
})
這裏我JSON結果
0 Object { id=1, name="Marie Curie"}
1 Object { id=2, name="Gustave Eiffel"}
和我的響應:
Marie Curie
Gustave Eiffel
這裏我的錯誤:
[{"id":1,"name":"Marie Curie"},{"id":2,"name":"Gustave Eiffel"}]
的console.log(listOfResources [I]。名稱)的返回
TypeError: resources[i] is undefined headCell.html(resources[i].name);
您能否包含用作回調的函數?看起來問題不在於您發佈的代碼。 –
函數回調(array){返回數組} – Cyril
和現在的函數回調undefined – Cyril