Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
a0293813
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
a0293813
编写于
1月 20, 2023
作者:
O
openharmony_ci
提交者:
Gitee
1月 20, 2023
浏览文件
操作
浏览文件
下载
差异文件
!13850 修改request接口参数描述 1018
Merge pull request !13850 from ann_lesley/cherry-pick-1674177390
上级
a64d9422
7bdec923
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
12 addition
and
12 deletion
+12
-12
zh-cn/application-dev/reference/apis/js-apis-request.md
zh-cn/application-dev/reference/apis/js-apis-request.md
+1
-1
zh-cn/application-dev/reference/apis/js-apis-system-request.md
.../application-dev/reference/apis/js-apis-system-request.md
+11
-11
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-request.md
浏览文件 @
a0293813
...
@@ -752,7 +752,7 @@ remove(callback: AsyncCallback<boolean>): void
...
@@ -752,7 +752,7 @@ remove(callback: AsyncCallback<boolean>): void
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
| filename | string | 是 | multipart提交时,请求头中的文件名。 |
| filename | string | 是 | multipart提交时,请求头中的文件名。 |
| name | string | 是 | multipart提交时,表单项目的名称,缺省为file。 |
| name | string | 是 | multipart提交时,表单项目的名称,缺省为file。 |
| uri | string | 是 | 文件的本地存储路径。
<br/>
支持“dataability”和“internal”两种协议类型,但“internal”仅支持临时目录,示例:
<br/>
dataability:///com.domainname.dataability.persondata/person/10/file.txt
<br/>
internal://cache/path/to/file.txt |
| uri | string | 是 | 文件的本地存储路径。
<br/>
仅支持“internal”协议类型,“internal://cache/”为必填字段,示例:
<br/>
internal://cache/path/to/file.txt |
| type | string | 是 | 文件的内容类型,默认根据文件名或路径的后缀获取。 |
| type | string | 是 | 文件的内容类型,默认根据文件名或路径的后缀获取。 |
...
...
zh-cn/application-dev/reference/apis/js-apis-system-request.md
浏览文件 @
a0293813
...
@@ -89,11 +89,11 @@ upload(options: UploadRequestOptions): void
...
@@ -89,11 +89,11 @@ upload(options: UploadRequestOptions): void
**系统能力**
: 以下各项对应的系统能力均为SystemCapability.MiscServices.Upload。
**系统能力**
: 以下各项对应的系统能力均为SystemCapability.MiscServices.Upload。
| 名称 | 类型 | 说明 |
| 名称 | 类型 |
必填 |
说明 |
| -------- | -------- | -------- |
| -------- | -------- | -------- |
-------- |
| code | number | 服务器返回的HTTP状态码。 |
| code | number |
是 |
服务器返回的HTTP状态码。 |
| data | string | 服务器返回的内容。根据返回头内容中的type决定该值的类型。 |
| data | string |
是 |
服务器返回的内容。根据返回头内容中的type决定该值的类型。 |
| headers | Object | 服务器返回的返回头内容。 |
| headers | Object |
是 |
服务器返回的返回头内容。 |
## RequestFile
## RequestFile
...
@@ -189,9 +189,9 @@ download(options: DownloadRequestOptions): void
...
@@ -189,9 +189,9 @@ download(options: DownloadRequestOptions): void
**系统能力**
: 以下各项对应的系统能力均为SystemCapability.MiscServices.Download。
**系统能力**
: 以下各项对应的系统能力均为SystemCapability.MiscServices.Download。
| 名称 | 类型 | 说明 |
| 名称 | 类型 |
必填 |
说明 |
| -------- | -------- | -------- |
| -------- | -------- | -------- |
-------- |
| token | string | 表示下载的token,获取下载状态的依据。 |
| token | string |
是 |
表示下载的token,获取下载状态的依据。 |
## request.onDownloadComplete
## request.onDownloadComplete
...
@@ -254,6 +254,6 @@ onDownloadComplete(options: OnDownloadCompleteOptions): void
...
@@ -254,6 +254,6 @@ onDownloadComplete(options: OnDownloadCompleteOptions): void
**系统能力**
: 以下各项对应的系统能力均为SystemCapability.MiscServices.Download。
**系统能力**
: 以下各项对应的系统能力均为SystemCapability.MiscServices.Download。
| 名称 | 类型 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
| uri | string | 表示下载文件的uri。 |
| uri | string | 是 | 表示下载文件的uri。 |
\ No newline at end of file
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录