Lumen Eloquent save()不更新数据库中的数据

时间:2016-07-16 12:10:50

标签: php eloquent lumen

我有买家模型,但是当我想更改当前的数据并保存时,它将无法保存。 $ buyer-> save()返回1但我的数据库中的数据不会改变。

P.S。 我的数据库有id,created_at和updated_at字段。并且$ buyer不是空的,它是我请求的数据的对象('pCode','禁止','hwid')

我的代码

namespace App\Http\Controllers;

use App\TGOBuyer as Buyer;

class SubController extends Controller
{
    public function ban($key){
        $buyer = Buyer::where('pCode', $key)->select('pCode', 'banned', 'hwid')->first();
        if (!$buyer || $buyer->banned)
            return response()->json(['wrong' => 'key']);

        $buyer->comment = 'test';
        $buyer->banned = 1;
        $buyer->save();
    }
}

买方模式     命名空间App;

use Illuminate\Database\Eloquent\Model;

class TGOBuyer extends Model {
    protected $table = 'buyers';
    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'banned', 'comment', 'pCode', 'hwid'
    ];
}

更新 我试图返回$ buyer-> id并且它给了我null,我不知道它为什么会发生。

这是我的数据库

CREATE TABLE IF NOT EXISTS `buyers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pCode` varchar(20) NOT NULL,
  `banned` tinyint(1) NOT NULL DEFAULT '0',
  `comment` text NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `pCode` (`pCode`),
  UNIQUE KEY `id_2` (`id`),
  KEY `id` (`id`),
  KEY `hwid` (`hwid`),
  KEY `pID` (`pID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=22468 ;

1 个答案:

答案 0 :(得分:1)

我明白了。我只需要在我的选择查询中加入 id 。现在一切正常。

$buyer = Buyer::where('pCode', $key)->select('id', 'pCode', 'banned', 'hwid')->first();