介绍
think-repository
是为 thinkphp 6.0.*
提供的存储库用于抽象数据层,使我们的应用程序更灵活地进行维护。
你懂的
ThinkPHP
>= thinkphp 6.0.*
安装教程
Composer
composer require fanxd/think-repository dev-master
使用说明
最好
在多应用
下使用
命令
php think fanxd:repository Post
路由
Route::resource(‘post’, ‘PostController’);
可用的方法
- first($id) // 查找单条记录
- get() // 查找记录
- paginate() // 分页查询
- create($data) // 写入数据
- save($data) // 保存当前数据对象
- delete($where) // 删除记录
- update($where,$data) // 更新记录
- find($id) // 查找单条记录 如果不存在则抛出异常
- findWhere($where,$columns = [‘*’]) // 指定AND查询条件 查找单条记录
- with([]) // 关联查询
- search([]) // 数据搜索
- order($order) // 排序
查找记录
$posts=$this->repository->get();
分页查询
$posts=$this->repository->paginate($limit);
按结果按id查找
$posts=$this->repository->find($id);
$posts=$this->repository->first($id);
加载模型关系
$posts=$this->repository->with([‘state’])->find($id);
按结果按字段名查找
$posts=$this->repository->findByField(‘title’, ‘Hello’);
按结果由多个字段查找
$posts=$this->repository->findWhere([
‘id’ => 1], [‘id’, ‘title]);
按结果在一个字段中查找多个值
$posts=$this->repository->findWhereIn(‘id’, [1,2,3,4,5]);
通过排除一个字段中的多个值,按结果查找
$posts=$this->repository->findWhereNotIn(‘id’, [6,7,8,9,10]);
写入数据
$post = $this->repository->create($data);
更新记录
$posts=$this->repository->update($where, $data);
删除记录
$this->repository->delete($id)
按多个字段删除存储库中的条目
$this->repository->deleteWhere([
‘id’ => 1, ‘user_id’ => 1])
Transformer
系统会自动生成transform
文件,可自行选择是否启用,主要功能对我来说就是美化接口让我们更专业 :)
<?php namespace app\api\transform;use fanxd\repository\command\transform\Transform;class PostTransform extends Transform{ public function transform($items) { return [ 'id' => $items['id'], //... 'createTime' => $items['create_time'], 'updateTime' => $items['update_time'] ]; }}
陆续添加更多的方法,如果你有好的想法可以告诉我,秒更!!!
相关推荐:最新的10个thinkphp视频教程
以上是介绍一个好用的ThinkPHP Repository包的详细内容。更多信息请关注PHP中文网其他相关文章!

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

EditPlus 中文破解版
体积小,语法高亮,不支持代码提示功能

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

SublimeText3 英文版
推荐:为Win版本,支持代码提示!

禅工作室 13.0.1
功能强大的PHP集成开发环境

SublimeText3汉化版
中文版,非常好用