From b86e2a73a96d587b109279f02bed8a1cb3064903 Mon Sep 17 00:00:00 2001 From: winixt Date: Wed, 24 Nov 2021 11:37:28 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0request=20plugin?= =?UTF-8?q?=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/request.md | 23 +++++++------------- docs/zh/reference/plugin/plugins/request.md | 24 ++++++++------------- 2 files changed, 17 insertions(+), 30 deletions(-) diff --git a/docs/reference/plugin/plugins/request.md b/docs/reference/plugin/plugins/request.md index 92e3111c..9332ab33 100644 --- a/docs/reference/plugin/plugins/request.md +++ b/docs/reference/plugin/plugins/request.md @@ -41,7 +41,10 @@ export default { `base` 接口前缀。 -⚠️警告,这个字段将在下个版本废弃,推荐使用 [axios baseURL](https://github.com/axios/axios)。 +::: warning 即将废弃 +这个字段将在下个版本废弃,推荐使用 [axios baseURL](https://github.com/axios/axios)。 +::: + ### 运行时配置 在 `app.js` 中进行运行时配置。 @@ -139,22 +142,12 @@ request('/api/login', { }) ``` -### 请求节流 +### 请求节流(即将废弃) -```js -import {request} from '@fesjs/fes'; -request('/api/login', { - username: 'robby', - password: '123456' -}, { - throttle: 1000, // 1 秒内只能发起一次请求 -}).then((res) => { - // do something -}).catch((err) => { - // 处理异常 -}) -``` +::: warning 即将废弃 +因为 request 的请求总会有一个 promise 结果,要么成功,要么失败,和防抖、节流的语义不一致,防抖、节流只是函数的不执行 +::: ### 请求缓存 diff --git a/docs/zh/reference/plugin/plugins/request.md b/docs/zh/reference/plugin/plugins/request.md index 92e3111c..2bf13c29 100644 --- a/docs/zh/reference/plugin/plugins/request.md +++ b/docs/zh/reference/plugin/plugins/request.md @@ -41,7 +41,10 @@ export default { `base` 接口前缀。 -⚠️警告,这个字段将在下个版本废弃,推荐使用 [axios baseURL](https://github.com/axios/axios)。 +::: warning 即将废弃 +这个字段将在下个版本废弃,推荐使用 [axios baseURL](https://github.com/axios/axios)。 +::: + ### 运行时配置 在 `app.js` 中进行运行时配置。 @@ -139,22 +142,13 @@ request('/api/login', { }) ``` -### 请求节流 +### 请求节流(即将废弃) -```js -import {request} from '@fesjs/fes'; -request('/api/login', { - username: 'robby', - password: '123456' -}, { - throttle: 1000, // 1 秒内只能发起一次请求 -}).then((res) => { - // do something -}).catch((err) => { - // 处理异常 -}) -``` +::: warning 即将废弃 +因为 request 的请求总会有一个 promise 结果,要么成功,要么失败,和防抖、节流的语义不一致,防抖、节流只是函数的不执行 +::: + ### 请求缓存