首页  >  文章  >  后端开发  >  lumen 5.3 EloquentModel类没有 find、findOrFail,where,first等方法

lumen 5.3 EloquentModel类没有 find、findOrFail,where,first等方法

WBOY
WBOY原创
2016-12-01 01:27:271772浏览

User继承自EloquentModel类,在lumen5.3框架下,phpstorm框架下面这段代码

<code>public function view($id){
        User::all();
        User::find($id);
        return  User::findOrFail($id);
}
</code>

phpstorm报错:

<code>Method 'find' not found in \App\User
Method 'findOrFail' not found in \App\User。</code>

all 方法没问题。

我把框架改成 lumen 5.0.3,不会报这个错。
是框架方法改了吗,那在lumen5.3该怎么写。

回复内容:

User继承自EloquentModel类,在lumen5.3框架下,phpstorm框架下面这段代码

<code>public function view($id){
        User::all();
        User::find($id);
        return  User::findOrFail($id);
}
</code>

phpstorm报错:

<code>Method 'find' not found in \App\User
Method 'findOrFail' not found in \App\User。</code>

all 方法没问题。

我把框架改成 lumen 5.0.3,不会报这个错。
是框架方法改了吗,那在lumen5.3该怎么写。

这篇文章看过了吗 貌似想用Eloquent要单独启用

如果你想要使用Eloquent ORM,应该取消bootstrap/app.php文件中$app->withEloquent()调用前的注释。

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn