标签:对象 魔术 where find rgb com col 查询 bsp
composer 安装laravel并换镜像 https://packagist.laravel-china.org
为什么我不太想用 Laravel ? 主要看 Eloquent# 介绍
通过 Model 查询数据时,我每次都按下面的方式写
\App\Models\User::query()->find(123); \App\Models\User::query()->where(‘type‘, $type)->get();
而不是官方推荐的直接用 where 或 find 等静态方法形式
\App\Models\User::find(123); \App\Models\User::where(‘type‘, $type)->get();
你应该猜到为什么了,因为调用 ->query()时会返回 Eloquent\Builder对象,这让 IDE 能够识别,后面的链式调用才能一气呵成。
而静态方法,又是通过魔术方法实现的,IDE 又跪了。
标签:对象 魔术 where find rgb com col 查询 bsp
原文地址:https://www.cnblogs.com/dafei4/p/13812865.html