microcyan / think-help
TP的辅助工具
1.0.3
2023-09-06 05:12 UTC
Requires
- php: >=7.0
- aliyuncs/oss-sdk-php: >=2.6
- guzzlehttp/guzzle: >=7.5
- php-mqtt/client: v1.8.0
- predis/predis: >=2.0
- topthink/framework: >=6
- w7corp/easywechat: >=6.8
This package is auto-updated.
Last update: 2025-03-06 08:12:27 UTC
README
- 复制
tpl/config
下的文件至项目的config
目录下,或进行覆盖 - 复制
tpl/.env.example
至项目根目录,并改名为:.env
- 在
app/ExceptionHandle.php
中修改render
方法如下:public function render($request, Throwable $e): Response { // 添加自定义异常处理机制 if (get_class($e)==="MicroCyan\ThinkHelp\Exception\NotLoginException"){ return json_error($e->getMessage(),[],501); } if (!env('app_debug')){ return json_error($e->getMessage(),'error'); } // 其他错误交给系统处理 return parent::render($request, $e); }