这里详细描述问题 webman在config文件下的captcha.php里这样写
declare(strict_types=1); use support\Container; use think\facade\Cache; return[ "option"=>Container::get(Cache::class), ];
然后就报错了,这怎么解决啊?
依赖注入没装吧?https://www.workerman.net/doc/webman/di.html
装了的 在controller里使用没问题
因为载入配置的时候Container还没有初始化,所以是null。
谢谢,想问下:旧项目tp6里config下的captcha.php里用了return [ "option"=> app()->make(Cache::class) ] 我把旧项目改成webman的话,这块怎么写啊?
直接new 试下
依赖注入没装吧?https://www.workerman.net/doc/webman/di.html
装了的 在controller里使用没问题
因为载入配置的时候Container还没有初始化,所以是null。
谢谢,想问下:旧项目tp6里config下的captcha.php里用了return [ "option"=> app()->make(Cache::class) ] 我把旧项目改成webman的话,这块怎么写啊?
直接new 试下