uniapp中文件上传
Posted 简单的小伙子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uniapp中文件上传相关的知识,希望对你有一定的参考价值。
addPic : function()
let token = this.token()
let url = "路径";
var that = this;
uni.chooseImage(
count: 1,
sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
sourceType: ['album','camera'], //从相册选择
success: function (res)
const tempFilePaths = res.tempFilePaths;
//图片上传
const uploadTask = uni.uploadFile(
url : url,
filePath: tempFilePaths[0],
name: 'head_img',
success: function (uploadFileRes)
const back = JSON.parse(uploadFileRes.data);
//图片显示赋值
that.personData.head_img = back.data
);
,
error : function(e)
console.log(e);
);
,
此篇博客借鉴了别人博客。
以上是关于uniapp中文件上传的主要内容,如果未能解决你的问题,请参考以下文章