Skip to content

Commit

Permalink
Update http.md (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
idranme authored Mar 24, 2024
1 parent 7139af4 commit 4b99d8b
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions zh-CN/api/service/http.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
# 网络请求 (HTTP)

::: warning
未来可能会将本插件重构为基于 [Fetch API](https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API) 的实现。
:::
`ctx.http` 是 Koishi 的内置服务,其上封装了一套基于 [fetch](https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API) 的网络请求 API。

`ctx.http` 是 Koishi 的内置服务,其上封装了一套基于 [axios](https://github.com/axios/axios) 的网络请求 API。

你可能会有这样的疑问:为什么不直接使用 axios,而是使用 `ctx.http`?这是因为许多插件都需要发起网络请求,而诸如代理、超时等配置又通常是插件无关的。因此我们为这些通用需求提供了 [全局的配置项](../../api/core/app.html#options-request-proxyagent),各个插件则只需要调用 `ctx.http` 即可。
你可能会有这样的疑问:为什么不直接使用 fetch,而是使用 `ctx.http`?这是因为许多插件都需要发起网络请求,而诸如代理、超时等配置又通常是插件无关的。因此我们为这些通用需求提供了 [全局的配置项](../../api/core/app.html#options-request-proxyagent),各个插件则只需要调用 `ctx.http` 即可。

## 实例方法

Expand Down

0 comments on commit 4b99d8b

Please sign in to comment.