gpt4 book ai didi

javascript - 使用 FullCalendar、jQuery 和 MVC 查看数据库中的数据

转载 作者:行者123 更新时间:2023-11-28 05:07:01 26 4
gpt4 key购买 nike

我是使用 fullCalendar 从数据库渲染事件的新手。我的目的是显示带有我的酒店预订详细信息的日历。日历只会显示数据。

这是原始脚本。我不知道应该把调用事件放在哪里来调用数据库中的数据。

<script type="text/javascript">

// DO NOT REMOVE : GLOBAL FUNCTIONS!

$(document).ready(function () {

"use strict";

var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();

var hdr = {
left: 'title',
center: 'month,agendaWeek,agendaDay',
right: 'prev,today,next'
};

var initDrag = function (e) {
// create an Event Object (http://arshaw.com/fullcalendar/docs/event_data/Event_Object/)
// it doesn't need to have a start or end

var eventObject = {
title: $.trim(e.children().text()), // use the element's text as the event title
description: $.trim(e.children('span').attr('data-description')),
icon: $.trim(e.children('span').attr('data-icon')),
className: $.trim(e.children('span').attr('class')) // use the element's children as the event class
};
// store the Event Object in the DOM element so we can get to it later
e.data('eventObject', eventObject);

// make the event draggable using jQuery UI
e.draggable({
zIndex: 999,
revert: true, // will cause the event to go back to its
revertDuration: 0 // original position after the drag
});
};

var addEvent = function (title, priority, description, icon) {
title = title.length === 0 ? "Untitled Event" : title;
description = description.length === 0 ? "No Description" : description;
icon = icon.length === 0 ? " " : icon;
priority = priority.length === 0 ? "label label-default" : priority;

var html = $('<li><span class="' + priority + '" data-description="' + description + '" data-icon="' +
icon + '">' + title + '</span></li>').prependTo('ul#external-events').hide().fadeIn();

$("#event-container").effect("highlight", 800);

initDrag(html);
};

/* initialize the external events
-----------------------------------------------------------------*/

$('#external-events > li').each(function () {
initDrag($(this));
});

$('#add-event').click(function () {
var title = $('#title').val(),
priority = $('input:radio[name=priority]:checked').val(),
description = $('#description').val(),
icon = $('input:radio[name=iconselect]:checked').val();

addEvent(title, priority, description, icon);
});

/* initialize the calendar
-----------------------------------------------------------------*/

$('#calendar').fullCalendar({


header: hdr,
buttonText: {
prev: '<i class="fa fa-chevron-left"></i>',
next: '<i class="fa fa-chevron-right"></i>'
},

// defaultView: 'agendaWeek',
editable: true,
droppable: true, // this allows things to be dropped onto the calendar !!!

drop: function (date, allDay) { // this function is called when something is dropped

// retrieve the dropped element's stored Event Object
var originalEventObject = $(this).data('eventObject');

// we need to copy it, so that multiple events don't have a reference to the same object
var copiedEventObject = $.extend({}, originalEventObject);

// assign it the date that was reported
copiedEventObject.start = date;
copiedEventObject.allDay = allDay;

// render the event on the calendar
// the last `true` argument determines if the event "sticks" (http://arshaw.com/fullcalendar/docs/event_rendering/renderEvent/)
$('#calendar').fullCalendar('renderEvent', copiedEventObject, true);

// is the "remove after drop" checkbox checked?
if ($('#drop-remove').is(':checked')) {
// if so, remove the element from the "Draggable Events" list
$(this).remove();
}

},

select: function (start, end, allDay) {
var title = prompt('Event Title:');
if (title) {
calendar.fullCalendar('renderEvent', {
title: title,
start: start,
end: end,
allDay: allDay
}, true // make the event "stick"
);
}
calendar.fullCalendar('unselect');
},

events: [{
title: 'All Day Event',
start: new Date(y, m, 1),
description: 'long description',
className: ["event", "bg-color-greenLight"],
icon: 'fa-check'
}, {
title: 'Long Event',
start: new Date(y, m, d - 5),
end: new Date(y, m, d - 2),
className: ["event", "bg-color-red"],
icon: 'fa-lock'
}, {
id: 999,
title: 'Repeating Event',
start: new Date(y, m, d - 3, 16, 0),
allDay: false,
className: ["event", "bg-color-blue"],
icon: 'fa-clock-o'
}, {
id: 999,
title: 'Repeating Event',
start: new Date(y, m, d + 4, 16, 0),
allDay: false,
className: ["event", "bg-color-blue"],
icon: 'fa-clock-o'
}, {
title: 'Meeting',
start: new Date(y, m, d, 10, 30),
allDay: false,
className: ["event", "bg-color-darken"]
}, {
title: 'Lunch',
start: new Date(y, m, d, 12, 0),
end: new Date(y, m, d, 14, 0),
allDay: false,
className: ["event", "bg-color-darken"]
}, {
title: 'Birthday Party',
start: new Date(y, m, d + 1, 19, 0),
end: new Date(y, m, d + 1, 22, 30),
allDay: false,
className: ["event", "bg-color-darken"]
}, {
title: 'Smartadmin Open Day',
start: new Date(y, m, 28),
end: new Date(y, m, 29),
className: ["event", "bg-color-darken"]
}],

eventRender: function (event, element, icon) {
if (!event.description == "") {
element.find('.fc-event-title').append("<br/><span class='ultra-light'>" + event.description +
"</span>");
}
if (!event.icon == "") {
element.find('.fc-event-title').append("<i class='air air-top-right fa " + event.icon +
" '></i>");
}
},

windowResize: function (event, ui) {
$('#calendar').fullCalendar('render');
}
});

/* hide default buttons */
$('.fc-header-right, .fc-header-center').hide();


$('#calendar-buttons #btn-prev').click(function () {
$('.fc-button-prev').click();
return false;
});

$('#calendar-buttons #btn-next').click(function () {
$('.fc-button-next').click();
return false;
});

$('#calendar-buttons #btn-today').click(function () {
$('.fc-button-today').click();
return false;
});

$('#mt').click(function () {
$('#calendar').fullCalendar('changeView', 'month');
});

$('#ag').click(function () {
$('#calendar').fullCalendar('changeView', 'agendaWeek');
});

$('#td').click(function () {
$('#calendar').fullCalendar('changeView', 'agendaDay');
});

})

</script>

}

最佳答案

目前,您通过日历的 events 属性将事件定义为静态数组,如使用 $('#calendar') 设置日历时所定义的那样.fullCalendar... 代码。要获取动态数据(例如从远程服务器获取动态数据),您有两个主要选项,如 fullCalendar 文档中所示。

1) “事件”作为 JSON 源:https://fullcalendar.io/docs/event_data/events_json_feed/

使用此选项,您只需指定资源的 URL,该资源将以 fullCalendar 期望的格式返回事件,并且可以使用 fullCalendar 自动发送的参数按时间段过滤事件。

您可以像这样简单地指定提要:

events: '/myfeed.php'

它需要能够响应两个 GET 参数:startend,并根据这些日期过滤返回的列表。上面的文档给出了参数值可能是什么样子的示例。

如果需要,还有更多选项可供您使用,但文档再次对这些选项进行了很好的解释。

2) “事件”作为函数:https://fullcalendar.io/docs/event_data/events_function/

基本上,在这里您可以执行任何您喜欢的操作来检索数据 - 可能会涉及 ajax 调用,但可能会涉及一些自定义,或者您可以在将事件返回到 fullCalendar 之前在客户端稍微处理一下。这真的取决于你。但本质上,您将事件定义为一个函数,例如:

events: myGetEventsFunction

然后您可以使用上述文档中给出的参数提供回调函数:

function myGetEventsFunction(start, end, timezone, callback) {
...

您将获得开始结束,它们将对应于日历上当前显示的日期范围、时区(如果需要)以及回调,这是一个用于将事件返回到 fullCalendar 的函数 - 同样,请参阅上面的文档以获取有关如何使用它的详细示例。

这些选项中的任何一个都会导致代码在每次用户更改日历 View 或更改日期范围时运行。

关于javascript - 使用 FullCalendar、jQuery 和 MVC 查看数据库中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41657993/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com