gpt4 book ai didi

javascript - 在express js中验证图片大小后才上传图片

转载 作者:行者123 更新时间:2023-12-03 04:38:00 24 4
gpt4 key购买 nike

这是我的代码,用于检查图像大小和宽度是否符合条件

im.identify(req.files.image,function (err,features) {      
//console.log(features);
if(features.width<1000){
console.log('need bigger size');
}
});
//upload code here
beginUpload();

由于它是异步的,因此 beginUpload() 函数会提前调用,所以我如何同步检查图像大小。即我想上传通过尺寸标准的图像

最佳答案

在 promise 中调用您的函数。

当你的identify()函数完成后,promise(then())将被执行。

试试这个:

im.identify(req.files.image,function (err,features) {      
//console.log(features);
if(features.width<1000){
console.log('need bigger size');
//stop the function to don't execute then()
return false;
}
}).then(function() {
//upload code here
beginUpload();
});

关于javascript - 在express js中验证图片大小后才上传图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43207557/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com