2

我正在使用 Laravel 5,并且我有一个必须更新数据库的简单编辑页面。当我尝试运行它时,出现错误

UserController.php 第 47 行中的 FatalErrorException:调用未定义的方法 stdClass::update()

控制器 :

public function userUpdate()
{
    if(Input::get('send')) {
        $arr = [
            'email' => Input::get('email')
        ];
        DB::table(Config::get('users_table'))->find(Input::get('userId'))->update(['is_active' => TRUE]);
        return redirect()->route('users');
    }           
}

数据库架构:

id bigserial NOT NULL,
username text,
email text,
permission integer NOT NULL,
is_staff boolean NOT NULL DEFAULT false,
is_active boolean NOT NULL DEFAULT false,
updated_at timestamp without time zone,
created_at timestamp without time zone,
remember_token text

路线 :

Route::post('/user/update', [
    'as' => 'userUpdate', 'uses' => 'UserController@userUpdate'
]);

看法 :

{!! Form::open(['route' => 'userUpdate', 'method' => 'post']) !!}

<label>Username</label>
{!! Form::text('username', $user->username, ['class' => 'form-control readonly', 'readonly' => '']) !!}

<label>Email</label>
{!! Form::text('email', $user->email, ['class' => 'form-control']) !!}

<label>Permission</label>
{!! Form::text('permission', $user->permission, ['class' => 'form-control']) !!}

{!! Form::hidden('userId', $user->id) !!}
{!! Form::submit('Update User', ['class' => 'btn green', 'name' => 'send']) !!}
{!! Form::submit('Cancel', ['class' => 'btn black', 'name' => 'clear']) !!}
{!! Form::close() !!}

我使用这种结构,特别是在我的控制器的另一个函数中使用 Input 和 Form 类来制作行列表或获取表的单个行,一切正常,但在更新数据库时出现Call to undefined method stdClass::update()错误。有什么我想念的吗?

4

2 回答 2

5

您不能在查询生成器中使用 find 方法,您需要使用 where

public function userUpdate()
{
if(Input::get('send')) {
    $arr = [
        'email' => Input::get('email')
    ];
    DB::table(Config::get('users_table'))->where('id',Input::get('userId'))->update(['is_active' => TRUE]);
    return redirect()->route('users');
}           
}
于 2016-02-02T06:41:28.300 回答
4

就我而言,我必须从

first() to limit(1)

IE。

        $blog = DB::table('blogs')
        ->where('blogs.id', $id)
        ->first();

        $blog = DB::table('blogs')
        ->where('blogs.id', $id)
        ->limit(1);
于 2018-11-14T18:20:10.237 回答