使用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'); ?>
我做错了什么?
答案 0 :(得分:12)
最好的方法是使用表单模型绑定(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令牌。
答案 1 :(得分:2)
您必须传递来自控制器的旧输入($entry
应该包含您的数据库条目):
return View::make('sampleform')->with('entry', $entry)->with_input();
然后在视图中,使用内联if语句加载输入(如果存在),或者从数据库加载:
Form::text('entry', Input::old('entry') ? Input::old('entry') : $entry, array('class' => 'form-select');
答案 2 :(得分:2)
Laravel中的old()
助手(至少在5.0中)允许使用默认值,这样如果定义了某个默认值$entry
,那么如果你这样做:
<?php
echo Form::text('entry', Input::old('entry', $entry), array('class' => 'form-select');
?>
帮助程序将首先尝试查找旧的表单值,否则将使用值$entry
。这也避免了在代码中使用三元运算符。
但是,在执行重定向并且出现错误时,您必须重新绑定旧的输入数据,以便postSampleform()
方法看起来像:
public function postSampleform() {
// Save to database again then redirect to success page
if ($success)
{
return Redirect::to('success');
}
else
{
return Redirect::to('sampleform')->withInput(Request::all());
}
}
答案 3 :(得分:0)
我通常这样做:
// Check first if there is data from database else blank
$entry = (isset($data->entry)) ? $data->entry : '';
<?php echo Form::text('entry', isset(Input::old('entry')) ? Input::old('entry') : $entry, array('class'=>'form-select')); ?>
然后在你的控制器中,你可以这样做:
public function getSampleform() {
// Load database data
$data = "Database data here";
return View::make('sampleform', compact('data'));
}
public function postSampleform() {
// validate
// if validation fails
// redirect back and pass old inputs
return Redirect::to('getSampleform')->withInput();
}
请注意,这适用于Laravel 4 .. 希望这对你有用..干杯......