takePickure() {
var _this = this;
uni.chooseImage({
count: 1,
sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
sourceType: ['camera'],
success: function(res) {
// console.log(JSON.stringify(res.tempFilePaths));
_this.photoPath = res.tempFilePaths[0];
_this.completeTake = true;
console.log(_this.photoPath);
}
});
},
3***@qq.com
- 发布:2019-08-12 11:05
- 更新:2019-12-06 14:51
- 阅读:2643
原生app 调H5项目 uni.chooseImage无法直接调相机,出现相机和相册选择
分类:uni-app
9***@qq.com
我现在是触发事件让原生操作后续的
2019-12-06 14:35