From 2418579b962b960116c053d1c83d369349b02e36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=95=8A=E5=B9=B3?= <951984189@qq.com> Date: Tue, 3 Dec 2019 17:34:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BC=93=E5=AD=98=E7=9A=84?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E6=BC=94=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- app/controller/user.ts | 1 + app/service/user.ts | 12 ++++++++++++ 3 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 app/service/user.ts diff --git a/README.md b/README.md index a7219e2..049631d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -## 学习交流微信 -![学习交流微信](https://i.loli.net/2019/10/24/VW1wFJMHhoGE5ra.jpg) - ## 展示 * 演示地址:https://show.cool-admin.com * 文档地址:https://docs.cool-admin.com @@ -178,3 +175,6 @@ async page (query) { | sql | 字符串 | 需要拼接的参数 | | params | 数组 | 相对应的参数 | +## 学习交流微信 +![学习交流微信](https://i.loli.net/2019/10/24/VW1wFJMHhoGE5ra.jpg) + diff --git a/app/controller/user.ts b/app/controller/user.ts index 81f2138..5be4780 100644 --- a/app/controller/user.ts +++ b/app/controller/user.ts @@ -5,5 +5,6 @@ import router from 'egg-cool-router'; export default class User extends BaseController { init() { this.setEntity(this.ctx.repo.User); + this.setService(this.service.user); } } diff --git a/app/service/user.ts b/app/service/user.ts new file mode 100644 index 0000000..63a5895 --- /dev/null +++ b/app/service/user.ts @@ -0,0 +1,12 @@ +import { BaseService } from 'egg-cool-service'; +import { Cache } from 'egg-cool-cache'; + +export default class User extends BaseService { + /** + * 缓存的使用演示 + */ + @Cache({ ttl: 10000 }) + async list () { + return await this.getRepo().User.find(); + } +}