Laravel表单模型绑定一对一关系未填充

时间:2015-01-24 23:10:27

标签: php laravel laravel-4

条款表:

  • term_id
  • 名称
  • 蛞蝓

Term_taxonomy表:

  • term_taxonomy_id
  • term_id
  • 描述

我的期限模型:

public function TermTaxonomy(){
    return $this->hasOne('TermTaxonomy');
}

My TermTaxonomy模型:

public function Term(){
    return $this->belongsTo('Term');
}

我的控制器

public function edit($id)
    {
    $categories = Term::with(['TermTaxonomy' => function($q){
        $q->select('term_id', 'description');
    }])->get(['term_id', 'name', 'slug']);

    $category = Term::with(['TermTaxonomy' => function($q){
        $q->select('term_id', 'description');
    }])->find($id, ['term_id', 'name', 'slug']);
    return View::make('qhymchildz.backend.posts.categories', compact('category', 'categories'));
}

我的观点

        @if (isset($category))
        {{ Form::model($category, ['route' => ['admin_posts_categories_update', $category->term_id], 'method' => 'PATCH']) }}
    @else
        {{ Form::open(['route' => 'admin_posts_categories_store'])}}
    @endif 

        {{ Form::label('name', 'Name') }}
        <span data-tooltip aria-haspopup="true" class="has-tip radius" title="Category name for your posts.">
        {{ Form::text('name', '', ['placeholder' => 'Category name here']) }}
        @if ($errors->has('name')) <small class="error"> {{ $errors->first('name') }} </small> @endif
        </span>

        {{ Form::label('slug', 'Slug') }}
         <span data-tooltip aria-haspopup="true" class="has-tip radius" title="Slug or URL for your category.">
        {{ Form::text('slug', '', ['placeholder' => 'Slug here']) }}
        @if ($errors->has('slug')) <small class="error"> {{ $errors->first('slug') }} </small> @endif
        </span>

        {{ Form::label('description', 'Description') }}
        {{ Form::textarea('description', '', ['placeholder' => 'Category description here', 'size' => '50x5']) }}

    @if (!isset($category))        
        {{ Form::submit('Add New Category', ['class' => 'radius button']) }}
    @else
        {{ Form::submit('Update', ['class' => 'radius button']) }}
    @endif

    {{ Form::close() }}

并且所有输入文本都没有填充,已经尝试了多种方式从谷歌搜索,但没有任何工作,那么如何在我的输入文本和文本区域填充数据?我用它来编辑功能。

谢谢,我是laravel的新人。任何帮助都将得到应用。

3 个答案:

答案 0 :(得分:4)

首先,第二个参数必须是null,因此它实际上会使用模型中的值:

{{ Form::text('name', null, ['placeholder' => 'Category name here']) }}

要使用相关模型中的属性,您可以使用:

{{ Form::textarea('TermTaxonomy[description]', null, ['placeholder' => 'Category description here', 'size' => '50x5']) }}

注意,开头不需要@if(isset($category))Form::model方法将自己处理不存在的模型。这就足够了:

{{ Form::model($category, ['route' => ['admin_posts_categories_update', $category->term_id], 'method' => 'PATCH']) }}

答案 1 :(得分:1)

在我的情况下,没有在Textarea上渲染模型值。

所以不是null,而是给出这样的值:

{{ Form::textarea('TermTaxonomy[description]', $category->TermTaxonomy['description'], ['placeholder' => 'Category description here', 'size' => '50x5']) }}

希望这也有助于某人。

答案 2 :(得分:0)

我也有同样的问题,但我这样做了:

{!! Form::text('firstname', $user->profile->firstname, ['class' => 'form-control']) !!}

在我的情况下: 用户belongsTo('App\Profile'), 个人资料hasOne('App\profile')

得到一个主意。希望它有所帮助!