我有一个Yiibooster可排序表行的问题。由于两个错误,它无法正常工作。
我通过写作安装了Yiiboster:
<?php
// main/config.php
Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/bootstrap');
'preload'=>array('log', 'bootstrap'),
// autoloading model and component classes
'import'=>array(
'application.models.*',
'application.components.*',
'application.modules.admin.components',
'application.modules.admin.models.*',
'bootstrap.*',
),
// application components
'bootstrap' => array(
'class' => 'bootstrap.components.Bootstrap',
),
?>
Uncaught TypeError: undefined is not a function
请给我一些建议。感谢。
答案 0 :(得分:1)
这看起来像YiiBooster的错误,请尝试使用最新版本,或者您可以报告here。请提及您的Yii版本和YiiBooster版本。
资产需要在Yii中正确注册,以便将它们缓存在 assets 文件夹中。 protected 文件夹受到保护,对它的请求被阻止。