使用button按钮点击选择上传视频时点击按钮这个函数有反应,但是无法进入chooseVideo接口选择系统图片,代码如下
onclickUploadVideo: function(){
var that = this;
wx.chooseVideo({
camera: ['back', 'front'],
compressed: true,
maxDuration: 180,
sourceType: ['album', 'camera'],
success: function(res) {
console.log(res.tempFilePath);
}
});
}
complete 看看返回的信息
选择图片应该用 wx.chooseImage