Laravel5.3 lists()方法报错Call to undefined method Illuminate\Database\Query\Builder::lists()问题处理
在用Laravel5.3开发时,遇到了这样的一个问题:
Call to undefined method Illuminate\Database\Query\Builder::lists()
感觉自己没写错哈。为什么会报错呢。最后查了下资料,发现laravel以前的版本用的是lists这个方法,而5.3版本则弃用了这个方法,改用方法pluck方法
$titles = DB::table('role')->lists('menu_id');
// lists方法改名字了,应该是pluck
$titles = DB::table('role')->pluck('menu_id');