码迷,mamicode.com
首页 > 移动开发 > 详细

uni-app上传图片(七牛云,app)

时间:2020-05-19 14:26:38      阅读:587      评论:0      收藏:0      [点我收藏+]

标签:key   服务器   media   https   七牛云   href   code   icon   请求   

uni.chooseImage(OBJECT):从本地相册选择图片或使用相机拍照。

uni.uploadFile(OBJECT):将本地资源上传到开发者服务器,客户端发起一个 POST 请求,其中 content-type 为 multipart/form-data

uni.chooseImage({
count: 1,
sizeType: [‘original‘, ‘compressed‘], //可以指定是原图还是压缩图,默认二者都有
sourceType: [‘album‘], //从相册选择
success: res => {
console.log(res);
uni.uploadFile({
url: ‘ http://upload.qiniup.com/‘,
filePath: this.filePath.concat(res.tempFilePaths).toString(),
name: ‘file‘,
formData: {
key: Math.round(new Date() / 1000),
token: this.token
},
success: result => {
this.producImg = res.tempFiles[0].path;
console.log(result.data.key);
this.httpImg = ‘http://‘ + this.http + ‘/‘ + Math.round(new Date() / 1000);
}
});
},
fail() {
uni.showToast({
title: ‘chooseImage fail‘,
duration: 3000,
icon: ‘none‘
});
},
error: e => {
console.log(e);
}
});

uni-app上传图片(七牛云,app)

标签:key   服务器   media   https   七牛云   href   code   icon   请求   

原文地址:https://www.cnblogs.com/talust/p/12916478.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!