拍摄或从手机相册中选择图片或视频
ymx.chooseMedia({
// 相册
sourceType: ['album'],
// 选一个
count: 1,
mediaType: ['image'],
}).then(res => {
alert(JSON.stringify(res));
});
ymx.chooseMedia({
// 相册
sourceType: ['album'],
// 选 3 个
count: 3,
mediaType: ['image'],
}).then(res => {
alert(JSON.stringify(res));
});
媒体