我正在尝试在 react 中添加 url 到 Fullcalendar,我需要当我点击一个事件时,clic 会将我带到该点击事件的页面详细信息。 浏览器上显示的URL
是正确的,但没有任何应用,因为浏览器会快速刷新。如果有人有任何想法,谢谢你的帮助。
//here some code
events.push(
{
title: 'n owner: '+reservation.user.fullname,
start: reservation.start_date,
end: reservation.end_date,
url: '/reservation/details/' + reservation.id + '/' + reservation.space.category.name,
},
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
navLinks: true, // can click day/week names to navigate views
editable: true,
eventLimit: true, // allow "more" link when too many events
events: evt,
timezone: 'UTC',
});
你应该使用 React 版本,不要把它和 jQuery 混用 https://fullcalendar.io/docs/react