diff --git a/zh-cn/application-dev/reference/apis/js-apis-system-fetch.md b/zh-cn/application-dev/reference/apis/js-apis-system-fetch.md
index f8a64fc102aebee4a456d835203ce19ccd54e2ae..c66a5f1850ffecb3dfad3738cb0e4f1acddb0ea9 100644
--- a/zh-cn/application-dev/reference/apis/js-apis-system-fetch.md
+++ b/zh-cn/application-dev/reference/apis/js-apis-system-fetch.md
@@ -25,23 +25,8 @@ fetch(Object): void
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
-| url | string | 是 | 资源地址。 |
-| data | string \| Object | 否 | 请求的参数,可选类型是字符串或者json对象。详见表 data与Content-Type关系。 |
-| header | Object | 否 | 设置请求的header。 |
-| method | string | 否 | 请求方法默认为GET,可选值为:OPTIONS、GET、HEAD、POST、PUT、DELETE、TRACE。 |
-| responseType | string | 否 | 默认会根据服务器返回header中的Content-Type确定返回类型,支持文本和json格式。详见success返回值。 |
-| success | Function | 否 | 接口调用成功的回调函数,返回值为[FetchResponse](#fetchresponse) |
-| fail | Function | 否 | 接口调用失败的回调函数。 |
-| complete | Function | 否 | 接口调用结束的回调函数。 |
-
-**表1** data与Content-Type关系
+| options | FetchOptions | 是 | 调用参数。 |
-| data | Content-Type | 说明 |
-| -------- | -------- | -------- |
-| string | 不设置 | Content-Type默认为 text/plain,data值作为请求的body。 |
-| string | 任意 Type | data值作为请求的body。 |
-| Object | 不设置 | Content-Type默认为application/x-www-form-urlencoded,data按照资源地址规则进行encode拼接作为请求的body。 |
-| Object | application/x-www-form-urlencoded | data按照资源地址规则进行encode拼接作为请求的body。 |
## FetchResponse3+
@@ -85,6 +70,30 @@ export default {
}
```
+## FetchOptions3+
+
+**系统能力:** SystemCapability.Communication.NetStack
+
+| 名称 | 类型 | 必填 | 说明 |
+| -------- | -------- | -------- | -------- |
+| url | string | 是 | 资源地址。 |
+| data | string \| Object | 否 | 请求的参数,可选类型是字符串或者json对象。详见表 data与Content-Type关系。 |
+| header | Object | 否 | 设置请求的header。 |
+| method | string | 否 | 请求方法默认为GET,可选值为:OPTIONS、GET、HEAD、POST、PUT、DELETE、TRACE。 |
+| responseType | string | 否 | 默认会根据服务器返回header中的Content-Type确定返回类型,支持文本和json格式。详见success返回值。 |
+| success | Function | 否 | 接口调用成功的回调函数,返回值为[FetchResponse](#fetchresponse) |
+| fail | Function | 否 | 接口调用失败的回调函数。 |
+| complete | Function | 否 | 接口调用结束的回调函数。 |
+
+**表3** data与Content-Type关系
+
+| data | Content-Type | 说明 |
+| -------- | -------- | -------- |
+| string | 不设置 | Content-Type默认为 text/plain,data值作为请求的body。 |
+| string | 任意 Type | data值作为请求的body。 |
+| Object | 不设置 | Content-Type默认为application/x-www-form-urlencoded,data按照资源地址规则进行encode拼接作为请求的body。 |
+| Object | application/x-www-form-urlencoded | data按照资源地址规则进行encode拼接作为请求的body。 |
+
> **说明:**
> 默认支持https,如果要支持http,需要在config.json里增加network标签,属性标识 "cleartextTraffic": true。即:
diff --git a/zh-cn/application-dev/reference/apis/js-apis-system-network.md b/zh-cn/application-dev/reference/apis/js-apis-system-network.md
index 07b4ef493aa33f5ed8e6ae22b8ca83e5ef53c67f..e7966ded392a6eef3e020ac70c89f23e600462b1 100644
--- a/zh-cn/application-dev/reference/apis/js-apis-system-network.md
+++ b/zh-cn/application-dev/reference/apis/js-apis-system-network.md
@@ -23,7 +23,7 @@ ohos.permission.GET_NETWORK_INFO
## network.getType3+
-getType(Object): void
+getType(options?:GetTypeOptions): void
获取当前设备的网络类型。
@@ -33,9 +33,7 @@ getType(Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
-| success | Function | 否 | 接口调用成功的回调函数,返回值为[NetworkResponse](#networkresponse) |
-| fail | Function | 否 | 接口调用失败的回调函数。 |
-| complete | Function | 否 | 接口调用结束的回调函数。 |
+| options | GetTypeOptions | 否 | 可选参数。 |
fail返回值:
@@ -73,8 +71,7 @@ subscribe(Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
-| success | Function | 否 | 网络发生变化的回调函数,返回值为[NetworkResponse](#networkresponse) |
-| fail | Function | 否 | 接口调用失败的回调函数。 |
+| options | SubscribeOptions | 否 | 可选参数。 |
fail返回值:
@@ -127,4 +124,23 @@ export default {
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| metered | boolean | 否 |是否按照流量计费。 |
-| type | string | 是|网络类型,可能的值有2g,3g,4g,5g,wifi,none等。 |
\ No newline at end of file
+| type | string | 是|网络类型,可能的值有2g,3g,4g,5g,wifi,none等。 |
+
+## GetTypeOptions3+
+
+**系统能力:** SystemCapability.Communication.NetManager.Core
+
+| 名称 | 类型 | 必填 | 说明 |
+| -------- | -------- | -------- | -------- |
+| success | Function | 否 | 接口调用成功的回调函数,返回值为[NetworkResponse](#networkresponse) |
+| fail | Function | 否 | 接口调用失败的回调函数。 |
+| complete | Function | 否 | 接口调用结束的回调函数。 |
+
+## SubscribeOptions3+
+
+**系统能力:** SystemCapability.Communication.NetManager.Core
+
+| 名称 | 类型 | 必填 | 说明 |
+| -------- | -------- | -------- | -------- |
+| success | Function | 否 | 网络发生变化的回调函数,返回值为[NetworkResponse](#networkresponse) |
+| fail | Function | 否 | 接口调用失败的回调函数。 |
\ No newline at end of file