我按照http://www.cniska.net/yii-bootstrap/setup.html上的 Yii-Bootstrap 安装说明进行操作,但在 config/main.php 中设置的路径别名对我不起作用:
<?php
// path alias for bootstrap
Yii::setPathOfAlias('bootstrap',Yii::getPathOfAlias(dirname(__FILE__).'/../extensions/bootstrap'));
// This is the main Web application configuration. Any writable
// CWebApplication properties can be configured here.
return array(
...
protected/extensions/bootstrap/... 是我的引导目录。
如果我想在我的 layouts/main.php 中使用它
Yii::app()->bootstrap->register();
它说“别名“bootstrap.components.Bootstrap”无效。确保它指向现有目录或文件。“
我尝试了很多东西,但无法让它工作。有任何想法吗?