当前位置:Gxlcms > PHP教程 > lumen5.3EloquentModel类没有find、findOrFail,where,first等方法

lumen5.3EloquentModel类没有find、findOrFail,where,first等方法

时间:2021-07-01 10:21:17 帮助过:64人阅读

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

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

phpstorm报错:

Method 'find' not found in \App\User
Method 'findOrFail' not found in \App\User。

all 方法没问题。

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

回复内容:

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

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

phpstorm报错:

Method 'find' not found in \App\User
Method 'findOrFail' not found in \App\User。

all 方法没问题。

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

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

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

人气教程排行