完整的日历V4数据库连接

时间:2019-07-01 12:45:25

标签: javascript php html fullcalendar

我正在努力使用全日历(V4)插件,并且使用MYSQL,我能够从数据库中加载事件并显示这些事件。使用:

eventSources: [
  // your event source
  {
    url: 'load.php',
    method: 'POST',
    extraParams: {
      description: 'description',
      resourceId: 'resourceId'
    },
    failure: function() {
      alert('Er was een Fout met de Planning op halen');
    },
    textColor: 'black' // a non-ajax option
  }
],

现在,当我尝试使用此功能加载说明时:

eventRender: function(info) {
  var tooltip = new Tooltip(info.el, {
    title: info.event.extendedProps.description,
    placement: 'top',
    trigger: 'hover',
    container: 'body'
  });
},

我收到此错误:

main.js:5224 Failure parsing JSON {message: "Failure parsing JSON", xhr: XMLHttpRequest}

我也在尝试将事件添加到我的数据库中,但不知道如何添加它们。 而且我一直都有这个错误。但是当我尝试在google ect上搜索它时,找不到我做错了的答案:

main.js:12 Uncaught TypeError: Cannot use 'in' operator to search for 'default' in undefined
at main.js:12
at main.js:9
at main.js:10
(anonymous) @ main.js:12
(anonymous) @ main.js:9
(anonymous) @ main.js:10

0 个答案:

没有答案