所以,我尝试使用React Native提供的函数,即Image.getSize。但是当我尝试在函数之外使用高度和宽度时,它似乎是零。这是我的代码:
var theHeight = 0;
Image.getSize(url,(height, width)=>{
theHeight = height;
})
console.log("test get height "+theHeight);
结果将是
测试获取高度 0
我做错了什么?
以下是我在 Redux Saga 中执行此操作的方法(我需要它阻止直到它被竞争):
const getImageSize = new Promise(
(resolve, reject) => {
Image.getSize(filePath, (width, height) => {
resolve({ width, height });
});
},
(error) => reject(error)
);
const { width, height } = yield getImageSize;
console.log(`width ${width}, height ${height}`);
你也可以用await(在异步函数中)调用promise,以防其他人需要这个。
你的代码有两个问题。首先是Image.getSize
异步调用其回调。您需要将依赖于图像大小的代码放在回调中。
第二个问题是成功回调的参数是(width, height)
的,而不是相反。
你应该写:
Image.getSize(url, (width, height) => {
console.log(`The image dimensions are ${width}x${height}`);
}, (error) => {
console.error(`Couldn't get the image size: ${error.message}`);
});