<script type="text/javascript">
$(document).ready(function() {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({
url: 'http://localhost/CalendarAPI/api/calendar/'
})
});
</script>
我想从 WebAPI Json 提供日历数据。当我单击上面的链接时,我可以看到 JSON 数据,并且可以下载格式正确的 JSON 数据。
在将上述 JSON 提供给 FullCalender JQuery 插件时需要帮助。