Home >Backend Development >PHP Tutorial >为什么laravel中use facade和Model不能同时使用

为什么laravel中use facade和Model不能同时使用

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-06 20:09:16935browse

这个问题我自己也觉得描述不清楚,直接贴个代码
为什么laravel中use  facade和Model不能同时使用

后来我是这么解决的
为什么laravel中use  facade和Model不能同时使用

有没有大神给我解释一下

回复内容:

这个问题我自己也觉得描述不清楚,直接贴个代码
为什么laravel中use  facade和Model不能同时使用

后来我是这么解决的
为什么laravel中use  facade和Model不能同时使用

有没有大神给我解释一下

难道不是命名冲突了么

<code>use App\Facades\Member as MemberA;
use App\Models\Member as MemberB;</code>

没有详细去了解Facade的原理,但根据我的理解,Facade对象只是一个真正类的捷径,也就是说,你第一张图里,相当于引用了两次Member类,显然是不行的;另外,把模型类做成Facade实在没有必要

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn