From 736bb901ea7888cf222dd8f672ea93000b12726f Mon Sep 17 00:00:00 2001 From: lucaszhu Date: Tue, 14 Dec 2021 10:31:57 +0800 Subject: [PATCH 1/2] Update request.md --- docs/zh/reference/plugin/plugins/request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zh/reference/plugin/plugins/request.md b/docs/zh/reference/plugin/plugins/request.md index 92e3111c..cb2105cc 100644 --- a/docs/zh/reference/plugin/plugins/request.md +++ b/docs/zh/reference/plugin/plugins/request.md @@ -56,7 +56,7 @@ export const request = { closeResDataCheck: false, // 请求拦截器 requestInterceptors: [], - // 相应拦截器 + // 响应拦截器 responseInterceptors: [], // 错误处理 // 内部以 reponse.data.code === '0' 判断请求是否成功 From 0d075f00376af023612c553e95dd97a7f98f5156 Mon Sep 17 00:00:00 2001 From: harrywan Date: Tue, 14 Dec 2021 11:42:49 +0800 Subject: [PATCH 2/2] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0model=E5=92=8Cacc?= =?UTF-8?q?ess=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/reference/plugin/plugins/access.md | 2 +- docs/reference/plugin/plugins/model.md | 40 ++++++++++++++++++++++ docs/zh/reference/plugin/plugins/access.md | 2 +- docs/zh/reference/plugin/plugins/model.md | 40 ++++++++++++++++++++++ 4 files changed, 82 insertions(+), 2 deletions(-) diff --git a/docs/reference/plugin/plugins/access.md b/docs/reference/plugin/plugins/access.md index 8563003d..b06f8783 100644 --- a/docs/reference/plugin/plugins/access.md +++ b/docs/reference/plugin/plugins/access.md @@ -195,7 +195,7 @@ console.log(access.isDataReady()) - Promise,Promise resolve 的结果应对应着 `roles` 配置对象中的 `key`。 ```js import { access } from '@fesjs/fes'; -access.setRole(['admin']) +access.setRole('admin') ``` #### access.setAccess diff --git a/docs/reference/plugin/plugins/model.md b/docs/reference/plugin/plugins/model.md index 16e4b5ed..a28d2a22 100644 --- a/docs/reference/plugin/plugins/model.md +++ b/docs/reference/plugin/plugins/model.md @@ -53,6 +53,46 @@ export default { ``` +### @@initialState +在`beforeRender`的返回的内容会写入`@@initialState` +```js +export const beforeRender = { + loading: , + action() { + const { setRole } = access; + return new Promise((resolve) => { + setTimeout(() => { + setRole('admin'); + // 初始化应用的全局状态,可以通过 useModel('@@initialState') 获取,具体用法看@/components/UserCenter 文件 + resolve({ + userName: 'harrywan' + }); + }, 1000); + }); + } +}; +```` +然后我们可以在其他组件中使用: +```vue + + + +``` + ## API diff --git a/docs/zh/reference/plugin/plugins/access.md b/docs/zh/reference/plugin/plugins/access.md index 8563003d..b06f8783 100644 --- a/docs/zh/reference/plugin/plugins/access.md +++ b/docs/zh/reference/plugin/plugins/access.md @@ -195,7 +195,7 @@ console.log(access.isDataReady()) - Promise,Promise resolve 的结果应对应着 `roles` 配置对象中的 `key`。 ```js import { access } from '@fesjs/fes'; -access.setRole(['admin']) +access.setRole('admin') ``` #### access.setAccess diff --git a/docs/zh/reference/plugin/plugins/model.md b/docs/zh/reference/plugin/plugins/model.md index 16e4b5ed..a28d2a22 100644 --- a/docs/zh/reference/plugin/plugins/model.md +++ b/docs/zh/reference/plugin/plugins/model.md @@ -53,6 +53,46 @@ export default { ``` +### @@initialState +在`beforeRender`的返回的内容会写入`@@initialState` +```js +export const beforeRender = { + loading: , + action() { + const { setRole } = access; + return new Promise((resolve) => { + setTimeout(() => { + setRole('admin'); + // 初始化应用的全局状态,可以通过 useModel('@@initialState') 获取,具体用法看@/components/UserCenter 文件 + resolve({ + userName: 'harrywan' + }); + }, 1000); + }); + } +}; +```` +然后我们可以在其他组件中使用: +```vue + + + +``` + ## API