完整日历不会使用资源显示 JSON 对象



我正在与fullcalendar工作,我想使用JSON文件来加载我的资源。JSON是返回对象的URL。

JSON文件:
[
  {id: '001995',title: 'Victor'},
  {id: '000078',title: 'Jhon'}
]  

代码示例

        resources: {
            url: '/resource-agenda/resource.json',
            type: 'POST'},
        events: '/resource-agenda/event.json'

我用下面的代码解决了这个问题:

resources: { // you can also specify a plain string like 'json/resources.json'
            url: 'resource-agenda/resource.json',
            error: function() {
                $('#script-warning').show();
            }
        },
        events: { // you can also specify a plain string like 'json/events.json'
            url: 'resource-agenda/event.json',
            error: function() {
                $('#script-warning').show();
            }
        }

相关内容

  • 没有找到相关文章

最新更新