hyper构造函数注入

hyperf`构造函数注入`和laravel的构造函数注入是一样的

以下为代码

路由

`Router::addRoute(['GET', 'POST', 'HEAD'], '/test', 'App\Controller\TestController@index');`

控制器

```
userService = $userService;
}

public function index(RequestInterface $request)
{
$id = $request->input('id',1);
// 直接使用
return $this->userService->getInfoById($id);
}
}
```

service层

```

    A+
发布日期:2021年12月30日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: