Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
1161b07a
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
1161b07a
编写于
8月 09, 2024
作者:
taohebin@dcloud.io
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 网络请求示例 增加请求完毕task置空
上级
608bae4d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
14 addition
and
9 deletion
+14
-9
pages/API/download-file/download-file.uvue
pages/API/download-file/download-file.uvue
+4
-2
pages/API/request/request.uvue
pages/API/request/request.uvue
+2
-1
pages/API/upload-file/upload-file.uvue
pages/API/upload-file/upload-file.uvue
+8
-6
未找到文件。
pages/API/download-file/download-file.uvue
浏览文件 @
1161b07a
...
@@ -55,11 +55,13 @@
...
@@ -55,11 +55,13 @@
success: (res) => {
success: (res) => {
console.log('downloadFile success, res is', res.tempFilePath)
console.log('downloadFile success, res is', res.tempFilePath)
self.imageSrc = res.tempFilePath;
self.imageSrc = res.tempFilePath;
uni.hideLoading();
},
},
fail: (err) => {
fail: (err) => {
console.log('downloadFile fail, err is:', err)
console.log('downloadFile fail, err is:', err)
uni.hideLoading();
},
complete: (res) => {
uni.hideLoading();
this.task = null;
}
}
});
});
this.task?.onProgressUpdate((update) => {
this.task?.onProgressUpdate((update) => {
...
...
pages/API/request/request.uvue
浏览文件 @
1161b07a
...
@@ -218,7 +218,8 @@
...
@@ -218,7 +218,8 @@
});
});
},
},
complete: () => {
complete: () => {
uni.hideLoading()
uni.hideLoading()
this.task = null
},
},
});
});
},
},
...
...
pages/API/upload-file/upload-file.uvue
浏览文件 @
1161b07a
...
@@ -61,7 +61,6 @@
...
@@ -61,7 +61,6 @@
},
},
success: (res) => {
success: (res) => {
console.log('uploadImage success, res is:', res)
console.log('uploadImage success, res is:', res)
uni.hideLoading();
uni.showToast({
uni.showToast({
title: '上传成功',
title: '上传成功',
icon: 'success',
icon: 'success',
...
@@ -71,12 +70,15 @@
...
@@ -71,12 +70,15 @@
},
},
fail: (err) => {
fail: (err) => {
console.log('uploadImage fail', err);
console.log('uploadImage fail', err);
uni.hideLoading();
uni.showModal({
uni.showModal({
content: err.errMsg,
content: err.errMsg,
showCancel: false
showCancel: false
});
});
},
},
complete: (res) => {
uni.hideLoading();
this.task = null
}
});
});
},
},
fail: (err) => {
fail: (err) => {
...
@@ -87,7 +89,7 @@
...
@@ -87,7 +89,7 @@
//自动化测试例专用
//自动化测试例专用
jest_uploadFile() {
jest_uploadFile() {
const imageSrc = "/static/uni.png";
const imageSrc = "/static/uni.png";
this.task =
uni.uploadFile({
uni.uploadFile({
url: 'https://unidemo.dcloud.net.cn/upload', //仅为示例,非真实的接口地址
url: 'https://unidemo.dcloud.net.cn/upload', //仅为示例,非真实的接口地址
filePath: imageSrc,
filePath: imageSrc,
name: 'file',
name: 'file',
...
@@ -160,7 +162,7 @@
...
@@ -160,7 +162,7 @@
},
},
jest_cookie_upload(needCookie : boolean) {
jest_cookie_upload(needCookie : boolean) {
const imageSrc = "/static/uni.png";
const imageSrc = "/static/uni.png";
this.task =
uni.uploadFile({
uni.uploadFile({
url: 'https://request.dcloud.net.cn/api/http/header/upload',
url: 'https://request.dcloud.net.cn/api/http/header/upload',
filePath: imageSrc,
filePath: imageSrc,
name: 'file',
name: 'file',
...
@@ -180,7 +182,7 @@
...
@@ -180,7 +182,7 @@
},
},
jest_files_upload() {
jest_files_upload() {
const imageSrc = "/static/uni.png";
const imageSrc = "/static/uni.png";
this.task =
uni.uploadFile({
uni.uploadFile({
url: 'https://unidemo.dcloud.net.cn/upload',
url: 'https://unidemo.dcloud.net.cn/upload',
files: [
files: [
{
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录