习惯了在控制器方法参上注入任意依赖, 用了webman不行了, 作者能否将thinkphp的类映射加进来? 好让控制器方法参可以注入任意依赖. 如下代码, 目前webman还是实现不了
<?php
namespace app\controller;
use support\Request;
use app\model\User;
class Index
{
public function index(Request $request, User $user)
{
return json($user->getList());
}
}
https://www.workerman.net/q/8902
看文档,使用别的依赖注入容器即可
做不了的,只能做构造方法的注入
这个我发过pr了,支持get参数和对象注入
https://github.com/walkor/webman-framework/pull/42