YII2 模块内自定义错误页 [ 技术分享 ]
当前YII框架中把错误异常配置都放置在 web.php 中,对于新增的模块 module 非常不方便,而且文档中基本没有任何教程,此处给大家分享一个方法:
<?php
namespace app\modules\cangshu;
class Module extends \yii\base\Module
{
public $controllerNamespace = 'app\modules\cangshu\controllers';
public function init()
{
parent::init();
// \Yii::configure($this->module, require(__DIR__ . '/config.php'));
// 自定义错误页
\Yii::$app->errorHandler->errorAction = 'cangshu/error/view';
}
}
希望对大家有用,更多内容请看我博客: http://vb2005xu.iteye.com
共 3 条回复
cangshu 北京
注册时间:2015-11-07
最后登录:2017-07-21
在线时长:2小时5分
最后登录:2017-07-21
在线时长:2小时5分
- 粉丝1
- 金钱180
- 威望0
- 积分200