如何使用拉拉维尔在完整日历中显示事件标题



我正在尝试为我的客户平台使用 fullCalendar 插件,但我在事件标题方面遇到了一个大问题......日历不显示它!

在这里您可以看到错误页面图像

这是我的JS代码

$(document).ready(function(){
    $('#calendar').fullCalendar({
        editable: true,
        events: {
            title: 'My Event Title',
            url: '/crud/bussiness/customers/json/{{$id}}',
            color: 'yellow',
            textColor: 'black'
                },
            selectable: true,
            selectHelper: true,
            select: function() {
                 $("#add_booking_modal").trigger("click");
                }
            });
        });

这是我的控制器代码与 JSON 操作

    if( $acc == 'json' ){
        return CompanyBussiness::getCustomers($id);
    }
//CompanyBussiness is the model where Im declarating the getCustomers method for show the events

我需要修复它,因为我必须在下周展示这个平台。

请有人帮我。

谢谢!!

你不需要给

title: 'My Event Title',

-与events.

相反,如果您有多个事件,则title与 JSON 编码数组一起加载。确保从 JSON 操作加载"标题"。

如果您有Chrome或Firefox,则可以简单地跟踪它。请通过以下方式查看

检查元素 [F12]>"网络"> 选择 XHR 选项

检查是否有标题作为事件标题传递。一旦你确定它是,那么你就会得到结果。

谢谢。

相关内容

  • 没有找到相关文章

最新更新