uni.chooseVideo({
sourceType: sourceType[this.sourceTypeIndex],
mediaType: ['video'],
maxDuration: 300,
count: 1,
success: (res) => {
console.log(res)
self.uniqueUpload(res.tempFilePath)
},
fail: (err) => {
console.log(err)
}
})
uniqueUpload: function(filePath) {
uni.uploadFile({
url: self.config.urlConfig + self.config.PORT + '/fdfs/uploadFile',
name: 'file',
filePath: filePath,
timeout: 300000,
header: {
"Content-Type": "multipart/form-data"
},
success: (res) => {
console.log(res)
},
fail: (res) => {
console.log(res)
}
});
},
2 个回复
DCloud_Android_ST
请提供完整demo示例
小枫叶 - 外包接单加v:wlmk1234567 注明来意
你让后端看一下,上传的限制大小,如果是springboot的项目,默认有一个上传的限制,如果在上传限制之外,那么就会报错,跟视频地址本身没有关系,如果你,在一分钟之内上传正确,那么99%确定是后端的上传限制问题