下面由Laravel教程栏目给大家介绍Sight! ,希望对需要的朋友有所帮助!
比如以下示例,几乎类似于Model的使用。
namespace App\Presenter use Bardoqi\Sight\Presenter; use Bardoqi\Sight\Traits\PresenterTrait; use Bardoqi\Sight\Enums\MappingTypeEnum use Bardoqi\Sight\Enums\PaginateTypeEnum use App\Repositories\ArticleRepository; use App\Repositories\UserRepository; class ArticlePresenter extents Presenter { use PresenterTrait; public function getArticleList($where) { $articleArray = ArticleRepository::getList($where); $user_ids = $this->selectFields('id','title','created_at','created_by') ->fromLocal($articleArray,'articles') ->pluck('created_by'); $users = UserRepository::getUsersWithIds($user_ids); $this->innerJoinForeign($users,'userss') ->onRelationByObject(Relation::of() ->localAlias('articles') ->localField('created_by') ->foreignAlias('users') ->foreighField('id')) ->addFieldMappingByObject(FieldMapping::of() ->key('created_at') ->src('created_at') ->type(MappingTypeEnum::METHOD_NAME)) ->addFieldMappingByObject(FieldMapping::of() ->key('created_by') ->src('user_name') ->type(MappingTypeEnum::JOIN_FIELD)); return $this->toPaginateArray(PaginateTypeEnum::PAGINATE_API); } }
上例中,代码则是把created_at从int转换成了时间,把created_by从user id转换成了用户名。
我们看出:created_at所用的是MappingTypeEnum::METHOD_NAME,这个方法在哪里呢,是在PresenterTrait中。所以,你也可以定义自己的Trait。
created_by则是直接读取关联数组中的user_name,因为用的是MappingTypeEnum::JOIN_FIELD。
上面代码看起来有些长,但是,onRelationByObject()可以改用 onRelation()传参方式,代码就短了。
同样addFieldMappingByObject(),改用addFieldMappingList()用数组传入,代码也短了。
Sight远远不只是这一点功能,它不仅支持MySQL查出的数据,同时支持ElasticSearch查出的数据。
虽然是纯数组操作,它一样也有innerJoin和outerJoin,并且,有hasOne,hasMany ……
当然,还有更多的功能,这个你就要仔细看文档了。
Sight试图解决你查出数据后,将其转换成可展示数据中的不爽,它做得很好,真的能让你 Coding More Happy; Coding More Quickly!
Github 地址: https://github.com/BardoQi/Sight
Sight——杀手级提升Laravel开发速度的组件现在开源了!赶紧FORK,赶紧STAR!
以上就是Sight!一个杀手级提升Laravel开发速度的组件现在开源了!的详细内容,更多请关注其它相关文章!