lists() method not found

Posted jialongfei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lists() method not found相关的知识,希望对你有一定的参考价值。

 

报错信息

 

BadMethodCallException with message ‘Call to undefined method App\User::lists()‘

 

 

laravel以前的版本用lists方法,而5.3版本开始则弃了这个方法,改用pluck方法,用法一致。

 

$ids = \App\User::lists(‘id‘);
// 改为
$ids = \App\User::pluck(‘id‘);

 

以上是关于lists() method not found的主要内容,如果未能解决你的问题,请参考以下文章

Gradle DSL method not found: 'android()

Error: Main method not found in class

Mybatis异常 org.apache.ibatis.binding.BindingException: Parameter 'storeId' not found. Avail(代

解决Gradle DSL method not found: ‘android()’

ideMyBatis报错: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):(示例代

Gradle DSL method not found: 'google()'