Laravel 6: метод GET не поддерживается для этого маршрута. Поддерживаемые методы: ошибка POST - PullRequest
2 голосов
/ 30 января 2020

Я новичок в Laravel 6, и я пытаюсь сделать функцию редактирования профиля, но я застрял с ошибкой:

The GET method is not supported for this route. Supported methods: POST

Если честно, я не уверен почему я получаю эту ошибку Я все перепроверил.

Функция обновления ProfileController

public function update(Request $request, $id)
    {
        $profile->nickname = $request->input('nickname');
        $profile->name = $request->input('name');
        $profile->birthday = $request->input('birthday');
        $profile->save(); //persist the data
        return redirect()->route('profile.index')->with('info','Profile got saved');
    }

Мой файл маршрута:

Route::get('/profile', 'ProfileController@index')->name('profile');

Route::put('/profile/edit/{profile}','ProfileController@update')->name('profile.update');

edit.blade. php

<form action="{{route('profile.update')}}" method="POST">
                        @csrf
                        @method('PUT')

                        <div class="form-group row">
                            <label for="nickname" class="col-md-4 col-form-label text-md-right">{{ __('Brugernavn') }}</label>

                            <div class="col-md-6">
                                <input id="nickname" type="text" class="form-control @error('nickname') is-invalid @enderror" name="nickname" value="{{ Auth::user()->nickname }}">
                            </div>
                        </div>

                        <!-- Submit -->
                        <div class="form-group row mb-0">
                            <div class="col-md-6 offset-md-4">
                                <button type="submit" class="btn btn-secondary">
                                    Gem
                                </button>
                            </div>
                        </div>
                    </form>

Ответы [ 4 ]

1 голос
/ 30 января 2020

Как пользователь Laravel предлагает использовать 5 методов.

GET/contacts, mapped to the index() method and shows contacts list,
GET /contacts/create, mapped to the create() method and shows create form,
POST /contacts, mapped to the store() method and handle create form request,
GET /contacts/{contact}, mapped to the show() method and shows single item,
GET /contacts/{contact}/edit, mapped to the edit() method and shows update form,
PUT/PATCH /contacts/{contact}, mapped to the update() method and handle update form request,
DELETE /contacts/{contact}, mapped to the destroy() method and handle delete form request.

Вы должны изменить свой маршрут. php file

Route::put('/profile/edit/{profile}','ProfileController@update')->name('profile.update');

И в вашей форме изменить действие

<form action="{{ route('profile.update', Auth::user()->id) }}" method="POST">
...
</form>

Для получения дополнительной информации: https://www.techiediaries.com/php-laravel-crud-mysql-tutorial/

1 голос
/ 30 января 2020
You are getting the error because your route expects post and you are using get method

Route::get('/profile/edit','ProfileController@edit')->name('profile.edit');


Route::put('/profile/','ProfileController@update')->name('profile.update');


public function edit() {

return view (edit);
}

public function update() {

//things to update
}
0 голосов
/ 30 января 2020

Вы можете установить метод маршрута любым

Change Route::post('/profile/edit','ProfileController@update')->name('profile.update'); 
to 
Route::any('/profile/edit','ProfileController@update')->name('profile.update'); change 

Спасибо

0 голосов
/ 30 января 2020

в вашем edit.blade. php удаление файла

 @method('PUT')

тогда ваш метод будет публиковать только

...