From dc00b85dba257fe2d628ca12ac02c5039e363dc3 Mon Sep 17 00:00:00 2001 From: yutent Date: Tue, 22 Mar 2022 19:09:31 +0800 Subject: [PATCH] update --- Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 998c0e9..90f2440 100644 --- a/Readme.md +++ b/Readme.md @@ -56,7 +56,7 @@ f1('/get_list', {body: {page: 1}}) ### APIs 1. fetch(url[, options]) -> 发起一个网络请求, options的参数如下。 同时支持配置公共域名, 公共参数。 + 发起一个网络请求, options的参数如下。 同时支持配置公共域名, 公共参数。 + method 默认GET, 可选GET/POST/PUT/DELETE... + body 要发送的数据, 如果是不允许有`body`的方式, 会被自动拼接到url上 @@ -83,7 +83,7 @@ fetch.inject.response(function(res) { 2. fetch.create([BASE_URL][, options]) -> 创建一个新的fetch实例 + 创建一个新的fetch实例 ```js var another = fetch.create('//192.168.1.101')