出于某种原因,我的 Fullcalendar 上看不到任何事件显示。
HTML
$(document).ready(function () {
$('#calendar').fullCalendar({
events: 'calendar/json-events.php'
});
});
json-events.php
<?php
$json = array();
$request = "SELECT * FROM event ORDER BY id";
try {
$bdd = new PDO('mysql:host=Roger-PC\SQLEXPRESS;dbname=calendar');
} catch(Exception $e) {
exit('Can't access the database.');
}
$result = $bdd->query($request) or die(print_r($bdd->errorInfo()));
echo json_encode($result->fetchAll(PDO::FETCH_ASSOC));
?>
所以我的数据库中确实有一些数据,但仍然没有任何显示,我想知道我的事件 url 是否有问题?我试着把
events: 'events.php'
仍然没有出现,那么也许我与数据库的连接?
在我的表中,我有 4 个字段:ID、标题、开始、结束
谢谢阅读!