UrlGenerationException:缺少[Route:topics.update] [URI:topics / {topic}]所需的参数

时间:2017-12-27 12:11:31

标签: laravel laravel-5 laravel-routing laravelcollective laravel-form

我收到此错误:

Missing required parameters for [Route: topics.update] [URI: topics/{topic}]. (View: C:\xampp\htdocs\phpboards\resources\views\topics\edit.blade.php)

这是用户编辑的链接:

<a href="/boards/topics/edit/{{$topic->id}}" class="btn btn-default">Edit</a>

这是编辑控制器:

$topic = Topic::find($id);
return view('topics.edit')->with('topic', $topic);

这是路线:

Route::get('/boards/topics/edit/{id}', 'TopicController@edit');

这是编辑的形式:

<div class="container">
    {!! Form::open(['action' => 'TopicController@update', 'method' => 'POST']) !!}
        <div class="form-group">
            {{ Form::label('title', 'Title') }}
            {{ Form::text('title', $topic->topic_title, ['class' => 'form-control', 'placeholder' => 'Title of the Post']) }}
        </div>
        <div class="form-group">
            {{ Form::label('desc', 'Desc') }}
            {{ Form::textarea('desc', $topic->topic_body, ['class' => 'form-control', 'placeholder' => 'Description of the Post']) }}
        </div>
        {{ Form::submit('Submit', ['class' => 'btn btn-default']) }}
    {!! Form::close() !!}
</div>

我在这里做错了什么?

2 个答案:

答案 0 :(得分:1)

我们承认您的update()方法已经在您的TopicController上实现。

首先你需要声明另一条路线:

Route::put('/boards/topics/edit/{id}', 'TopicController@update');
//     ^^^

然后改变你的表格开头:

{!! Form::open(['action' => ['TopicController@update', $topic->id], 'method' => 'put']) !!}
//                                                     ^^^^^^^^^^                ^^^

它应该有效。

答案 1 :(得分:1)

而不是:

{!! Form::open(['action' => 'TopicController@update', 'method' => 'POST']) !!}

使用

{!! Form::open(['url' => route('topics.update', $topic->id), 'method' => 'POST']) !!}

因为您的路线需要传递要更新的主题ID。使用named routes代替Controller @ method表示法也更合理。