我正在尝试编辑/更新配置文件信息到我的用户表中。
我的想法是让经过身份验证的用户能够在“用户”表中编辑自己的个人资料。
在注册过程中,您只需填写几个特定项目(用户名,姓名,电子邮件,密码),但我还在用户表(城市,国家/地区,电话, twitter,facebook)。
我有一个个人资料用户页面(route ='/ profile'),其中显示了所有信息。当然,注册期间不需要的所有列都没有填写:
我还有一个编辑页面,其中需要添加信息的列是可编辑的:
以下是此editprofile.blade.php的代码(我尝试发送PATCH方法):
...
{!! Form::model($user, ['route' => 'user/' . $user , 'method' => 'PATCH']) !!}
<div class="form-group form-horizontal">
<div class="form-group">
{!! Form::label('username', 'Username:', ['class' => 'col-md-4 control-label']) !!}
<div class="col-md-6">
<label class="align-left">{{ $user->username}}<label>
</div>
</div>
<div class="form-group">
{!! Form::label('email', 'E-mail:', ['class' => 'col-md-4 control-label']) !!}
<div class="col-md-6">
<label class="align-left">{{ $user->email}}<label>
</div>
</div>
<div class="form-group">
{!! Form::label('name', 'Name:', ['class' => 'col-md-4 control-label']) !!}
<div class="col-md-6">
<label class="align-left">{{ $user->name}} {{ $user->lastname}}<p>
</div>
</div>
<br />
<div class="form-group">
{!! Form::label('city', 'City:', ['class' => 'col-md-4 control-label']) !!}
<div class="col-md-6">
{!! Form::Text('city', null, ['class' => 'form-control']) !!}
</div>
</div>
<div class="form-group">
{!! Form::label('country', 'Country:', ['class' => 'col-md-4 control-label']) !!}
<div class="col-md-6">
{!! Form::Text('country', null, ['class' => 'form-control']) !!}
</div>
</div>
<div class="form-group">
{!! Form::label('phone', 'Phone:', ['class' => 'col-md-4 control-label']) !!}
<div class="col-md-6">
{!! Form::Text('phone', null, ['class' => 'form-control']) !!}
</div>
</div>
<div class="form-group">
{!! Form::label('twitter', 'Twitter link:', ['class' => 'col-md-4 control-label']) !!}
<div class="col-md-6">
{!! Form::Text('twitter', null, ['class' => 'form-control']) !!}
</div>
</div>
<div class="form-group">
{!! Form::label('facebook', 'Facebook link:', ['class' => 'col-md-4 control-label']) !!}
<div class="col-md-6">
{!! Form::Text('facebook', null, ['class' => 'form-control']) !!}
</div>
</div>
<div class="form-group">
<div class="col-md-6 col-md-offset-4">
{!! Form::submit('Save Profile', ['class' => 'btn btn-primary']) !!}
</div>
</div>
</div>
</div>
{!! Form::close() !!}
...
我有这是我的Http / routes.php:
# Profile
Route::get('/profile', 'PagesController@profile');
Route::get('/profile/edit', 'ProfileController@edit');
Route::bind('user', function($id) {
$user = App\User::find($id)->first();
});
Route::patch('user/{user}', 'ProfileController@update');
我有一个Http / Requests / UpdateUserRequest.php来验证请求:
<?php namespace App\Http\Requests;
use App\Http\Requests\Request;
use Illuminate\Foundation\Http\FormRequest;
class UpdateUserRequest extends Request {
public function authorize()
{
return false;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'city' => 'max:30',
'country' => 'max:30',
'phone' => 'max:30',
'twitter' => 'max:30',
'facebook' => 'max:30'
];
}
}
我的Http / Controllers / ProfileController.php带有更新功能:
<?php namespace App\Http\Controllers;
use Auth;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class ProfileController extends Controller {
public function edit()
{
$user = Auth::user();
return view('pages.editprofile')->withUser($user);
}
public function update(UpdateUserRequest $request, User $user)
{
$user->fill($request->all());
$user->save();
return redirect()->view('pages.editprofile')->withUser($user);
}
}
此刻我似乎甚至无法打开我的'editprofile.blade.php'页面,除非我删除'route'&amp;从我的形式'methode'。 我一直收到这个错误:
有人可以指导我如何完全触发PATCH方法吗?
答案 0 :(得分:1)
将表单开始标记更改为
{!! Form::model($user, ['route' => 'user/' . $user->id , 'method' => 'PATCH']) !!}
你忘了' - &gt; id'
<强>更新强>
改变您的路线 从
Route::patch('user/{user}', 'ProfileController@update');
到
Route::patch('user/{user}', 'as' => 'profile.patch', 'ProfileController@update');
和您的表单开始标记
{!! Form::model($user, ['route' => array('profile.patch', $user->id), 'method' => 'PATCH']) !!}
答案 1 :(得分:0)
您需要更改:
{!! Form::model($user, ['route' => 'user/' . $user , 'method' => 'PATCH']) !!}
成:
{!! Form::model($user, ['route' => 'user/' . $user->id , 'method' => 'PATCH']) !!}
目前,您在表单中创建了一个将User
对象转换为Json的URL - 这就是为什么它不起作用。