我使用的是http://fullcalendar.io/,當談到javascript和jquery時,我非常喜歡noob。MVC模式的完整日曆事件數組
我知道我可以添加事件壓延這樣的:
events: [
{
title: 'All Day Event',
start: new Date(y, m, 1),
backgroundColor: "#f56954", //red
borderColor: "#f56954" //red
},
{
title: 'Meeting',
start: new Date(y, m, d, 10, 30),
allDay: false,
backgroundColor: "#0073b7", //Blue
borderColor: "#0073b7" //Blue
}
]
我的問題是如何能夠用我的IEnumarable模型添加具有循環事件。
我覺得你只是錯過'Array.prototype.push()',你就可以到一個方法使用'events'來推送新創建的JSON對象。在你的循環中創建一個新對象,然後將它推入'events'中,然後就完成了。 – Aaron
你能舉個例子嗎? –
我不知道IEnumerable模型,但我會用一個簡單的javascript循環發佈答案 – Aaron