我正在尝试将 fullcalendar 添加到我的 cakephp 项目中。但是,系统会因包含来自 fullcalendar 的 javascript 的一些文件而失败。
我通过谷歌浏览器的控制台发现页面正在加载;但是当我打开页面时,我得到以下信息:
Missing Controller
Error: IncludesController could not be found.
Error: Create the class IncludesController below in file: app\Controller\IncludesController.php
<?php
class IncludesController extends AppController {
}
Notice: If you want to customize this error message, create app\View\Errors\missing_controller.ctp
Stack Trace
所以......页面正在加载......但是...... CakePHP 停止它......我怎样才能绕过 cakephp 让我的 javascript 加载文件?
非常感谢!!!!
编辑
当我加载页面时,我从 chrome 的控制台收到此消息:
Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost/projects/cake/clean/vendors/includes/cal_events.php?
start=1380405600&end=1384038000&_=1382911071971
cal_events.php 的位置是:
C:\xampp\htdocs\projects\cake\clean\Vendor\includes\cal_events.php
cal_events.php 的内容是:
<?php
// Loader - class and connection
include('loader.php');
echo $calendar->json_transform();
?>
加载此文件的 javascript:
var defaults =
{
calendarSelector: '#calendar',
timeFormat: 'H:mm - {H:mm}',
ajaxJsonFetch: 'vendors/includes/cal_events.php',
我希望这很好......再次......非常感谢!