uni编译成小程序触发上传的点击事件
chooseVD() {
var self = this;
uni.chooseVideo({
sourceType: ['camera', 'album'],
compressed: false,
success: function(res) {
let vdposter = res.thumbTempFilePath ? res.thumbTempFilePath :
'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-4255d65b-cbef-4c16-ae9f-cf1b3c706ff2/4877b631-6ed8-434f-9911-e1170666bc13.jpg'
self.vdinfo = {
vdurl: '',
playurl: res.tempFilePath,
vdposter: vdposter,
vduser: self.myuserInfo.nickname,
VID: new Date().getTime(),
vdtitle: '',
duration: res.duration, //当前视频时长,用于控制进度条
vdmode: res.width > res.height ? 'hp' : 'sp'
}
}
});
点击加号之后触发App Hide
选择完之后触发App Show
最后报call failed:, {errMsg: "chooseVideo:fail cancel"}