美文网首页
2020-05-29 Vue中fullcalendar后台设置e

2020-05-29 Vue中fullcalendar后台设置e

作者: 臭臭猫爱不爱吃鱼 | 来源:发表于2020-05-29 17:51 被阅读0次

    显示当天日程出现“12a”的原因

    因为没有指定日程发生在某一天的具体时间,所以,在加载后台数据渲染的时候默认的会在title之前显示一个12a,此时只要为后台返回的json格式的数据指定allday为true,这样数据显示的日程发生时间就为全天。

    为了一目了然,我抽取了viewDisplay如下:

    viewDisplay: function() {
    ("#calendar").fullCalendar('removeEvents');.getJSON('<%=basePath%>projectmember/getscoreByuid.do',{"memberId":memberId},function(data) {
    for(var i=0;i<data.length;i++) {
    var obj = new Object();
    obj.id = data[i].id;
    obj.title = data[i].title;
    obj.allDay = true;
    calendar.fullCalendar('renderEvent',obj,true);
    }
    });
    },

    ————————————————
    版权声明:本文为CSDN博主「vavid317」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/vavid317/java/article/details/9840849
    转载自https://blog.csdn.net/vavid317/article/details/9840849

    相关文章

      网友评论

          本文标题:2020-05-29 Vue中fullcalendar后台设置e

          本文链接:https://www.haomeiwen.com/subject/cgjfzhtx.html