gpt4 book ai didi

javascript - fullcalendar.io : jsonfeed is not working

转载 作者:行者123 更新时间:2023-12-03 04:45:27 25 4
gpt4 key购买 nike

我正在尝试使用 jsonfeed 加载 JSON 数据,如下所示。

$('#calendar').fullCalendar({
events: '/myfeed.php'
});

我正在获取 JSON 数据,但它没有显示在日历上。吹的是JSON数据。

{
"events": [
{
"start": "2017-04-25",
"title": "Event1"
},
{
"start": "2017-04-26",
"title": "Event2"
}
]
}

而且我无法获得任何好的教程。如果能附上教程就更好了。

最佳答案

当您的 JSON 文件没有“end”字段时,它只会传递“allDay”事件。我已经在我的网站上对此进行了测试。另外,请记住,如果 end 字段与 start 字段相同,则 FullCalendar 会将 end 字段清空,以减少推送到 FullCalendar 的数据量(如果您使用 < strong>utils.php 文件。

如果这没有帮助,您还需要检查文本的格式。我注意到 FullCalendar 喜欢 UTF-8 格式。在 myFeed.php 中,确保在解码文件之前转换文本:

$json = mb_convert_encoding($json, 'UTF-8',mb_detect_encoding($json, 'UTF-8, ISO-8859-1', true));
$input_arrays = json_decode($json, true);

希望这有帮助。

关于javascript - fullcalendar.io : jsonfeed is not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42890011/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com