yii2模块的独立配置不生效
程序员文章站
2022-05-08 22:28:38
...
我项目中有一v1模块,在V1.php中的init代码中加载了配置
parent::init();
Yii::configure($this, [
'components'=>[
'errorHandler' => [
'class'=>'app\modules\v1\common\ErrorHandler'
]
]
]);
然后我在控制器中加了一行throw new HttpException(403);
最后控制器中怎么没走到我自定义的errorhandle里面呢?
可是我在项目中的config/web.php的components中加入
'errorHandler' => [
'class'=>'app\modules\v1\common\ErrorHandler'
]
就能够正常走自定义的errorHandler,这是为什么呢?
回复内容:
我项目中有一v1模块,在V1.php中的init代码中加载了配置
parent::init();
Yii::configure($this, [
'components'=>[
'errorHandler' => [
'class'=>'app\modules\v1\common\ErrorHandler'
]
]
]);
然后我在控制器中加了一行throw new HttpException(403);
最后控制器中怎么没走到我自定义的errorhandle里面呢?
可是我在项目中的config/web.php的components中加入
'errorHandler' => [
'class'=>'app\modules\v1\common\ErrorHandler'
]
就能够正常走自定义的errorHandler,这是为什么呢?
v1模块的init改成
parent::init();
Yii::$app->errorHandler->errorAction = 'app\modules\v1\common\ErrorHandler';
试试看
推荐阅读
-
jdk环境变量配置改变不生效的问题
-
一次Linux修改MySQL配置不生效的问题解决
-
JQuery-Validate明明配置好了但是不生效?卡了2个小时的bug解决了,原因很简单。
-
解决idea配置Tomcat虚拟路径不生效的问题
-
SpringCloud2020整合Nacos-Bootstrap配置不生效的解决
-
记一次Linux修改MySQL配置不生效的问题
-
在集成环境中修改配置文件php.ini不生效的解决办法
-
Python - paramiko 模块远程执行ssh 命令 nohup 不生效的问题解决
-
详解git中配置的.gitignore不生效的解决办法
-
Springboot在idea中使用devtools热部署配置不生效的解决办法