使用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):
原文链接:https://www.f2er.com/laravel/135608.html使用现有模型或创建“空”模型类:
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令牌.