import http from './index.js'; const checkSize = src => { return new Promise((resolve, reject) => { uni.getImageInfo({ src, success: async ({width, height}) => { console.log(width > 4000, height > 4000) if (width > 4000 || height > 4000) return reject('图片尺寸过大,请上传小于4000*4000的图片') resolve(true) }, complete: res => { console.log(res) } }) }) }