Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
96a06c84
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
96a06c84
编写于
5月 09, 2023
作者:
O
openharmony_ci
提交者:
Gitee
5月 09, 2023
浏览文件
操作
浏览文件
下载
差异文件
!17974 Update net docs
Merge pull request !17974 from Yangys/update_docs
上级
ba6f195a
ed4cd5a8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
5 addition
and
5 deletion
+5
-5
zh-cn/application-dev/reference/apis/js-apis-http.md
zh-cn/application-dev/reference/apis/js-apis-http.md
+1
-1
zh-cn/application-dev/reference/apis/js-apis-net-connection.md
.../application-dev/reference/apis/js-apis-net-connection.md
+4
-4
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-http.md
浏览文件 @
96a06c84
...
...
@@ -814,7 +814,7 @@ httpRequest.off('dataProgress');
| extraData | string
<sup>
6+
</sup>
\|
Object
<sup>
6+
</sup>
\|
ArrayBuffer
<sup>
8+
</sup>
| 否 | 发送请求的额外数据,默认无此字段。
<br
/>
- 当HTTP请求为POST、PUT等方法时,此字段为HTTP请求的content,以UTF-8编码形式作为请求体。
<sup>
6+
</sup><br
/>
- 当HTTP请求为GET、OPTIONS、DELETE、TRACE、CONNECT等方法时,此字段为HTTP请求参数的补充。开发者需传入Encode编码后的string类型参数,Object类型的参数无需预编码,参数内容会拼接到URL中进行发送;ArrayBuffer类型的参数不会做拼接处理。
<sup>
6+
</sup>
|
| expectDataType
<sup>
9+
</sup>
|
[
HttpDataType
](
#httpdatatype9
)
| 否 | 指定返回数据的类型,默认无此字段。如果设置了此参数,系统将优先返回指定的类型。 |
| usingCache
<sup>
9+
</sup>
| boolean | 否 | 是否使用缓存,默认为true。 |
| priority
<sup>
9+
</sup>
| number | 否 | 优先级,范围
\[
0,1000],默认是0
。 |
| priority
<sup>
9+
</sup>
| number | 否 | 优先级,范围
[1,1000],默认是1
。 |
| header | Object | 否 | HTTP请求头字段。默认{'Content-Type': 'application/json'}。 |
| readTimeout | number | 否 | 读取超时时间。单位为毫秒(ms),默认为60000ms。
<br
/>
设置为0表示不会出现超时情况。 |
| connectTimeout | number | 否 | 连接超时时间。单位为毫秒(ms),默认为60000ms。 |
...
...
zh-cn/application-dev/reference/apis/js-apis-net-connection.md
浏览文件 @
96a06c84
...
...
@@ -15,7 +15,7 @@ import connection from '@ohos.net.connection'
createNetConnection(netSpecifier?: NetSpecifier, timeout?: number): NetConnection
返回一个NetConnection对象,netSpecifier指定关注的网络的各项特征
,timeout是超时时间(单位是毫秒),
netSpecifier是timeout的必要条件,两者都没有则表示关注默认网络。
返回一个NetConnection对象,netSpecifier指定关注的网络的各项特征
;timeout是超时时间(单位是毫秒);
netSpecifier是timeout的必要条件,两者都没有则表示关注默认网络。
**系统能力**
:SystemCapability.Communication.NetManager.Core
...
...
@@ -23,8 +23,8 @@ createNetConnection(netSpecifier?: NetSpecifier, timeout?: number): NetConnectio
| 参数名 | 类型 | 必填 | 说明 |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
| netSpecifier |
[
NetSpecifier
](
#netspecifier
)
| 否 | 指定网络的各项特征,不指定
则
关注默认网络。 |
| timeout | number | 否 | 获取netSpecifier指定的网络时的超时时间,仅netSpecifier存在时生效。 |
| netSpecifier |
[
NetSpecifier
](
#netspecifier
)
| 否 | 指定网络的各项特征,不指定
或为undefined时
关注默认网络。 |
| timeout | number | 否 | 获取netSpecifier指定的网络时的超时时间,仅netSpecifier存在时生效
,undefined时默认值为0
。 |
**返回值:**
...
...
@@ -1840,7 +1840,7 @@ connection.getDefaultNet().then(function (netHandle) {
| ------ | ------ | --- |------------------------- |
| host | string | 否 | 代理服务器主机名。 |
| port | number | 否 | 主机端口。 |
| exclusionList | Array
<string>
| 否 | 不使用代理服务器的屏蔽列表。 |
| exclusionList | Array
<string>
| 否 | 不使用代理服务器的屏蔽列表
,列表内元素拼接后长度不可超过96字节。
<br>
例如:“baidu.com,zhihu.com”为20字节
。 |
## NetSpecifier
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录