我正在尝试将函数从MVC模型传递到fullcalendar CustomButton,就像这样
var model = new CalendarViewModel()
{
(...different properties of fullcalendar...)
CustomButtons = new
{
CustomButton = new
{
Text = "Custom",
Click = "function() { window.location.href = " + Url.Action("CustomView", "Custom") + "; }"
}
},
Header = new { Center = "title", Left = "prev,next customButton", Right = "month,agendaWeek,agendaDay,today" },
};
然后序列化并将其传递给js文件
function initFrom(calendarViewModel, rootUrl) {
$('#calendar').fullCalendar(calendarViewModel);
}
但是我得到错误qazxsw poi我认为是因为我从序列化模型传递字符串。
如果我的方法不正确,我怎样才能达到预期的结果 - 将路由值传递给自定义按钮点击功能(没有在js文件中硬编码路由值)?
我找到了解决方法。
基于customButtonProps.click.call is not a function
,我在JS中添加了自定义按钮,并从传递的模型中检索了值(模型略有变化,我在这里省略):
this scheduler demo