>백엔드 개발 >PHP 튜토리얼 >lumen 5.3 EloquentModel 클래스에는 find, findOrFail, where, first 및 기타 메소드가 없습니다.

lumen 5.3 EloquentModel 클래스에는 find, findOrFail, where, first 및 기타 메소드가 없습니다.

WBOY
WBOY원래의
2016-12-01 01:27:271837검색

사용자는 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>

어떤 방법이든 괜찮습니다.

프레임워크를 lumen 5.0.3으로 변경했는데 이 오류가 보고되지 않습니다.
lumen5.3에서는 프레임워크 방식이 어떻게 바뀌었나요?

답글 내용:

사용자는 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>

어떤 방법이든 괜찮습니다.

프레임워크를 lumen 5.0.3으로 변경했는데 이 오류가 보고되지 않습니다.
lumen5.3에서는 프레임워크 방식이 어떻게 바뀌었나요?

이 글 읽어보셨나요? Eloquent를 사용하시려면 별도로 활성화하셔야 할 것 같습니다

Eloquent ORM을 사용하려면 bootstrap/app.php 파일에서 $app->withEloquent() 호출의 주석 처리를 제거해야 합니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.