Laravel 多态关系:将模型传递给控制器

Laravel polymorphic relations: Passing model to controller

我想使用一个控制器来保存我对多个模型的评论。所以我创建了 CommentController,使用以下存储方法:

public function store(Teacher $teacher, Request $request)
    {    
        $input = $request->all();

        $comment = new Comment();

        $comment->user_id = Auth::user()->id;
        $comment->body = $input['body'];

        $teacher->comments()->save($comment);

        return redirect()->back();
    }

在我看来,我有:

{!! Form::open([
    'route' => ['teachers.comments.store', $teacher->id]
]) !!}

这是有效的。如果我想使用同一个 CommentController 来存储一个学校的评论,我应该如何修改控制器的 store 方法?

我不确定这是否是 Laravel 约定,但我已经完成了以下操作:

制定路线:

Route::post('/Comment/{model}/{id}', [
    // etc
]);

然后在控制器中获取模型并检查一组允许的模型,传递 id 并附加:

public function store(Request $request, $model, $id) {
    $allowed = ['']; // list all models here

    if(!in_array($model, $allowed) {
        // return redirect back with error
    }

    $comment = new Comment();
    $comment->user_id = $request->user()->id;
    $comment->commentable_type = 'App\Models\'.$model;
    $comment->commentable_id = $id;
    $comment->body = $request->body;
    $comment->save();

    return redirect()->back();
}

就像我说的,很可能有更好的方法来完成,但我就是这样做的。它保持简短和甜美,并检查模型是否可以发表评论。

Adam 的解决方案很棒,但我不会 hard-code 模型的命名空间那样。相反,我会做的是利用 Laravel 的 Relation::morphMap(),你可以在这里查看:https://laravel.com/docs/5.6/eloquent-relationships#polymorphic-relations

这样,您还可以使数据库条目更具可读性。我建议使用服务提供商来映射变形。

此外,Model 基础 class 有一个 getMorphClass() 方法,所以不用 $comment->commentable_type = 'App\Models\'.$model; 我会用 $comment->commentable_type = $model->getMorphClass();

这样您就可以将 Laravel 的逻辑集成到您的代码中。

如果你愿意,我是这样实现的,据我所知,这是最好的实现方式之一。

// Route::post('/comments/{model}/{id}', 'CommentController@store');
class CommentController extends Controller {

protected $model;

public function __construct()
{
    $this->model = Relation::getMorphedModel(
        request()->route()->parameter('model')
    );
}

/**
 * Store a newly created resource in storage.
 *
 * @param  \Illuminate\Http\Request  $request
 * @return \Illuminate\Http\Response
 */
public function store(Request $request)
{
    dd($this->model); // return 'App\Post' or null
}

}