fix(Uploader): replace wx.chooseImage with wx.chooseMedia

This commit is contained in:
masicheng 2023-04-27 15:46:42 +08:00
parent e0df0181f2
commit 33a7e55a71

View File

@ -45,13 +45,13 @@ export function isVideoFile(item: File): boolean {
}
function formatImage(
res: WechatMiniprogram.ChooseImageSuccessCallbackResult
res: WechatMiniprogram.ChooseMediaSuccessCallbackResult
): File[] {
return res.tempFiles.map((item) => ({
...pickExclude(item, ['path']),
type: 'image',
url: item.path,
thumb: item.path,
url: item.tempFilePath,
thumb: item.tempFilePath,
}));
}
@ -101,10 +101,13 @@ export function chooseFile({
return new Promise<File | File[]>((resolve, reject) => {
switch (accept) {
case 'image':
wx.chooseImage({
wx.chooseMedia({
count: multiple ? Math.min(maxCount, 9) : 1,
mediaType: ['image'],
sourceType: capture,
maxDuration,
sizeType,
camera,
success: (res) => resolve(formatImage(res)),
fail: reject,
});