qtip 完整日历上的格式日期不匹配

Format Date on qtip full calender not match

我对完整日历中的日期格式有疑问。我在我的完整日历上使用 qtip,我尝试显示日期,但日期显示格式如下

Start Date : 1534291200000

这是我的 JS

   eventRender: function(event, element) {
      element.qtip({    
        content: {    
            text: '<span class="title">Start Date : ' + event.start +'</span>',
            style: { classes: 'qtip-dark' }
        },
        position: {
          my: 'bottom center', 
          at: 'top center'
        },
        style: {classes: 'qtip-tipsy'}
    });
    }

您可以在函数内格式化日期,然后按您想要的方式显示它。

eventRender: function(event, element) {
      var getDt = new Date(event.start);
      var dateString = getDt.getFullYear() + '-' + (getDt.getMonth() + 1) + '-' + getDt.getDate();
      element.qtip({    
        content: {    
            text: '<span class="title">Start Date : ' + dateString +'</span>',
            style: { classes: 'qtip-dark' }
        },
        position: {
          my: 'bottom center', 
          at: 'top center'
        },
        style: {classes: 'qtip-tipsy'}
    });
    }