尝试在实时环境中发布日历,但不起作用。在本地环境中可以正常工作。
尝试使用jQuery CDN,但不起作用。更改了控制器中的方法返回类型,但不起作用。
$(document).ready(function () {
var events = [];
var selectedEvent = null;
FetchEventAndRenderCalendar();
function FetchEventAndRenderCalendar() {
events = [];
$.ajax({
type: "GET",
url: "/home/GetEvents",
success: function (data) {
$.each(data, function (i, v) {
events.push({
ID: v.ID,
title: v.Name,
description: v.Description,
start: moment(v.Start),
end: v.End != null ? moment(v.End) : null,
color: v.ThemeColor,
allDay: v.IsFullDay
});
})
GenerateCalender(events);
},
error: function (error) {
alert('failed');
}
})
}
jquery-1.10.2.min.js:23 GET http://www.onebase.com/home/GetEvents 404(未找到)