打开边栏(ESC)
关闭边栏(ESC)
youlai-think操作日志不自动添加
明明已经配置了,自动添加操作日志
#[Log(actionType: ActionType::DEPT_CREATE)]
但是不起作用
找到中间件app\common\middleware\LogMiddleware.php 54行
$controllerClass = app()->parseClass('controller', $controller);
if (!class_exists($controllerClass)) {
return;
}
发现$controllerClass的到的是app\controller\DeptController
DeptController放在app\system\controller\DeptController下面,当然找不到
所以我们要把模块名,补充上,就可以了
获取模块名
$layer = $request->layer();
获取控制器完整类名
$controllerClass = app()->parseClass($layer . '\\controller', $controller);
完整代码
然后就可以正常添加日志了
赏
相关推荐
php think run 然后http://0.0.0.0:8000/打开thinkphp8失败
php think run 然后http://0.0.0.0:8000/打开thinkphp8失败
应该是用http://127.0.0.1:8000/打开就正常了
如果运行的时候就提示错误
php think run
ThinkPHP Development server is started On &...
thinkphp8使用composer install安装错误,运行不起来,vendor里面是空的
thinkphp8使用composer install安装错误,运行不起来,vendor里面是空的
Problem 1
- Root composer.json requires topthink/think-trace ^2.0, it is satisfiable by topthink/think-trac...
评论加载中...
关于本站
“最难不过坚持”
本人承接扒站仿站,php网站维护,病毒查杀,网站编辑,网站改版,html制作
有需要网站维护,改版,病毒查杀,网站编辑,网站备案,html制作等相关的工作可以联系我。
本人有多年相关工作经验,也可提供免费咨询,交个朋友。
有需要探讨问题的朋友,也可以加我微信,共同探讨!
微信:15011482830 QQ:408917339
2734
39
分类目录
最新评论
- https://jueru.net/
-
评 留言
- :weixiao:
-
评 留言
- :shuijiao: :weiqu: :zhenbang: :leng:
-
评 留言
- :yiwen: :yiwen: :yiwen: :yiwen:
-
评 EasySass: could not generate CSS file. See Output panel for details.
- 这个业务逻辑多少都有点奇怪了,阅读浏览次数增值在新闻详情页的控制器方法里setInc,这怎么还写进模型事件里了。如果非要用onAfterRead也可以,把新闻文章的内容单独分出来一个news_content表,然后把它和news做关联,然后给news_content表的onAfterRead事件做增值处理,这样点进新闻页内查询到文章内容时才会触发它。
-
评 TP6模型事件-查询后onAfterRead不好用
文章标签更多
前一篇: thinkphp8获取当前模块名