php – Laravel:在允许Form :: old()的同时填充表单
发布时间:2020-12-14 19:46:34 所属栏目:大数据 来源:网络整理
导读:使用Laravel中的Form类填充表单的最佳方法是什么,如果有任何错误仍然让位于Input :: old()?我似乎无法做对. 我目前的设置看起来像这样 public function getSampleform() { // Load database data here return View::make('sampleform');}public function po
使用Laravel中的Form类填充表单的最佳方法是什么,如果有任何错误仍然让位于Input :: old()?我似乎无法做对.
我目前的设置看起来像这样 public function getSampleform() { // Load database data here return View::make('sampleform'); } public function postSampleform() { // Save to database again then redirect to success page return Redirect::to('success'); } 我通常以这种方式在视图中回显我的字段: <?php echo Form::text('entry',Input::old('entry'),array('class' => 'form-select'); ?> 我究竟做错了什么?
最好的方法是使用表单模型绑定(
http://four.laravel.com/docs/html#form-model-binding):
使用现有模型或创建“空”模型类: class NoTable extends Eloquent { protected $guarded = array(); } 找到你的模型或实例化你的空类并用数据填充它: public function getSampleform() { // Load database data here $model = new NoTable; $model->fill(['name' => 'antonio','amount' => 10]); return View::make('sampleform')->with(compact('model')); } 如果您将表单与已有数据的表格一起使用,则可以使用以下方法: public function getSampleform() { // Locate the model and store it in a variable: $model = User::find(1); // Then you just pass it to your view: return View::make('sampleform')->with(compact('model')); } 要填充表单,请使用表单模型绑定,这是Blade中的一个示例: {{ Form::model($model,array('route' => array('sample.form')) ) }} {{ Form::text('name') }} {{ Form::text('amount') }} {{ Form::close() }} 您甚至不必传递输入数据,因为Laravel将使用首先填充您的输入: 1 - Session Flash Data (Old Input) 2 - Explicitly Passed Value (wich may be null or not) 3 - Model Attribute Data Laravel还将使用Form :: open()或Form :: model()为您处理csrf令牌. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |