在laravel的视图中查看我的数据库

时间:2014-06-25 03:10:59

标签: php laravel

抱歉,如果这是一个非常新手Q .. 但请帮我解决这个问题。加上我告诉我这个错误发生的原因..

这是我的编辑视图

new.blade.php

@section('content')
@include('common.show_error')

{{Form::open(array('url'=>'author/update', 'method'=>'PUT'))}}

<p>
    {{ Form::label('name', 'Name: ') }}</br>
    {{ Form::text('name', $author->name) }}
</p>

<p>
    {{ Form::label('bio', 'Biography: ') }}</br>
    {{ Form::textarea('bio', $author->bio) }}
</p>

{{ Form::hidden('id', $author->id) }}

<p>{{ Form::submit('Edit Data') }}</p>

@stop

这是我的节目视图

show.blade.php

@extends('layouts.default')

@section('content')
<h1>{{ $author->name }}</h1>

<p>{{ $author->bio }}</p>

<p>{{ $author->updated_at }}</p>

<span>
    {{ HTML::linkRoute('authors', 'Home') }} |
    {{ HTML::linkRoute('edit_author', 'Edit', array($author->id)) }} |
    {{ Form::open(array('url'=>'author/destroy', 'method'=>'DELETE', 'style'=>'display: inline;')) }}
    {{ Form::hidden('id', $author->id) }}
    {{ Form::submit('Delete') }}
    {{ Form::close() }}
</span>
@stop

这是我的控制器

public function update($id)
{
    $id = Input::get('id');

    $validator = Member::validate(Input::all());

    if($validator->fails()){
        return Redirect::route('members.edit', $id)->withErrors($validator);
    } else {
        Member::where('id','=',$id)->update(array(
            'name' => Input::get('name'),
            'bio' => Input::get('bio')
        ));

        return Redirect::route('members.show', $id)
            ->with('message', 'Data Succesfully Updated');
    }
}

案例:当我尝试使用编辑按钮编辑数据时。它说:

&#34;试图获得非对象laravel&#34;

的属性

当我检查错误日志时。它指的是

<h1>{{ $author->name }}</h1>

1 个答案:

答案 0 :(得分:0)

public function update($id)
{
    $id = Input::get('id');

    $validator = Member::validate(Input::all());

    if($validator->fails()){
        return Redirect::route('members.edit', $id)->withErrors($validator);
    } else {
            $author = Member::find($id);
            $author->update(array(
            'name' => Input::get('name'),
            'bio' => Input::get('bio')
        ));

        return Redirect::route('members.show', $id)
            ->with('message', 'Data Succesfully Updated')
            ->with('author', $author);
    }
}

您的控制器几乎没有变化,请尝试:)在您的代码中,您不会将变量“author”发送到您的视图中。