当前位置:Gxlcms > PHP教程 > Laravel中控制器实例化model的方法有什么不妥请指点

Laravel中控制器实例化model的方法有什么不妥请指点

时间:2021-07-01 10:21:17 帮助过:3人阅读

我在每个控制器的初始化方法中实例化了相应的Model,然后在各个方法里使用,不知道这样有什么不妥,感觉自己实现的不够优雅。 主要是网站有很多模块,都是差不多的功能,部分代码是替换了model名称实例化。

  1. <code>public function __construct()
  2. {
  3. parent::__construct();
  4. $this->model = new \Line();
  5. }
  6. public function store()
  7. {
  8. $input = \Input::all();
  9. $validator = \Validator::make($input,$this->model->getRules('create'),$this->model->getMessage());
  10. if ($validator->fails())
  11. {
  12. return \Redirect::back()->with('errorCode',1)->withErrors($validator)->withInput();
  13. }else{
  14. if($model = $this->model->create($input)){
  15. return \Redirect::back()->with('errorCode',0);
  16. }else{
  17. return \Redirect::back()->with('errorCode',2);
  18. }
  19. }
  20. }
  21. </code>

回复内容:

我在每个控制器的初始化方法中实例化了相应的Model,然后在各个方法里使用,不知道这样有什么不妥,感觉自己实现的不够优雅。 主要是网站有很多模块,都是差不多的功能,部分代码是替换了model名称实例化。

  1. <code>public function __construct()
  2. {
  3. parent::__construct();
  4. $this->model = new \Line();
  5. }
  6. public function store()
  7. {
  8. $input = \Input::all();
  9. $validator = \Validator::make($input,$this->model->getRules('create'),$this->model->getMessage());
  10. if ($validator->fails())
  11. {
  12. return \Redirect::back()->with('errorCode',1)->withErrors($validator)->withInput();
  13. }else{
  14. if($model = $this->model->create($input)){
  15. return \Redirect::back()->with('errorCode',0);
  16. }else{
  17. return \Redirect::back()->with('errorCode',2);
  18. }
  19. }
  20. }
  21. </code>

如果是Model的话,不需要这样做。

你是store可以这样写:

  1. <code>public function store()
  2. {
  3. $input = \Input::all();
  4. $validator = \Validator::make($input, Line::getRules('create'), Line::getMessage());
  5. if ($validator->fails())
  6. {
  7. return \Redirect::back()->with('errorCode',1)->withErrors($validator)->withInput();
  8. }else{
  9. if($model = Line::create($input)){
  10. return \Redirect::back()->with('errorCode',0);
  11. }else{
  12. return \Redirect::back()->with('errorCode',2);
  13. }
  14. }
  15. }
  16. </code>

Lind的getRules和getMessage和具体的对象没有关系的话,就写成静态方法。
下面的create直接用静态方法。

人气教程排行