0

我在 Laravel 中使用表单模型绑定来更新视图,以实现优先级 1. 会话 Flash 数据(旧输入) 2. 显式传递值 3. 模型属性数据

{{ Form::model($model, array('url' => $route.'/update/'.$model->id)) }}
{{ Form::label('price', trans_choice('app.price', 1), array('id' => 'price_label')) }}
{{ Form::text('price', null, array('id' => 'price')) }}

这工作正常,但我想在不使用刀片表示法输入字段的情况下做同样的事情,也就是说我想替换

{{ Form::text('price', null, array('id' => 'price')) }} 

<input type="text" name="price" id="price" value="">

但还是得到了上述的优先权,这可能吗?

4

1 回答 1

2

你可以尝试使用这个:

<input id="price" name="price" type="text" value="{{{ Form::getValueAttribute('price', null) }}}">

这是 Form::text 调用的函数来替换值。

Laravel 4Form::getValueAttribute功能:

/**
 * Get the value that should be assigned to the field.
 *
 * @param  string  $name
 * @param  string  $value
 * @return string
 */
public function getValueAttribute($name, $value = null)
{
    if (is_null($name)) return $value;

    if ( ! is_null($this->old($name)))
    {
        return $this->old($name);
    }

    if ( ! is_null($value)) return $value;

    if (isset($this->model))
    {
        return $this->getModelValueAttribute($name);
    }
}
于 2013-09-13T08:47:43.063 回答