uni-app上传图片或者说照片(调用相册或者摄像头)

uni-app上传图片或者说照片(调用相册或者摄像头)

<template>
**<view @click="chooseImage">热门</view>**
</template>
		methods: {
			chooseImage() {
				uni.chooseImage({
					count: 6, //默认9
					sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
					sourceType: ['album', 'camera'], //从相册选择、摄像头
					success: function(res) {
						console.log(JSON.stringify(res.tempFilePaths));
					}
				});
			}
		}

你可能感兴趣的:(uni-app上传图片或者说照片(调用相册或者摄像头))