我有一个React Native组件,该组件对该组件中的每个图像进行Image.getSize
请求。然后在Image.getSize
请求的回调中,为组件设置一些状态。一切正常,但是问题在于,用户有可能在一个或多个Image.getSize
请求响应之前从使用组件的屏幕上移开,然后弹出“无操作内存泄漏”错误因为我正在尝试在卸载组件后更改状态。
所以我的问题是:如何在卸载组件后如何阻止Image.getSize
请求尝试修改状态?这是我的组件代码的简化版本。谢谢。
const imgWidth = 300; // Not actually static in the component, but doesn't matter.
const SomeComponent = (props) => {
const [arr, setArr] = useState(props.someData);
const setImgDimens = (arr) => {
arr.forEach((arrItem, i) => {
if (arrItem.imgPath) {
const uri = `/path/to/${arrItem.imgPath}`;
Image.getSize(uri, (width, height) => {
setArr((currArr) => {
const newWidth = imgWidth;
const ratio = newWidth / width;
const newHeight = ratio * height;
currArr = currArr.map((arrItem, idx) => {
if (idx === i) {
arrItem.width = newWidth;
arrItem.height = newHeight;
}
return arrItem;
});
return currArr;
});
});
}
});
};
useEffect(() => {
setImgDimens(arr);
return () => {
// Do I need to do something here?!
};
}, []);
return (
<FlatList
data={arr}
keyExtractor={(arrItem) => arrItem.id.toString()}
renderItem={({ item }) => {
return (
<View>
{ item.imgPath ?
<Image
source={{ uri: `/path/to/${arrItem.imgPath}` }}
/>
:
null
}
</View>
);
}}
/>
);
};
export default SomeComponent;
我必须实现类似的东西,我首先初始化一个名为isMounted
的变量。
在安装组件时将其设置为true
,将在卸载组件时将其设置为false
。
在调用setImgDimens
之前,要检查是否已安装该组件。如果没有,它将不会调用该函数,因此不会更新状态。
const SomeComponent = (props) => {
const isMounted = React.createRef(null);
useEffect(() => {
// Component has mounted
isMounted.current = true;
if(isMounted.current) {
setImgDimens(arr);
}
return () => {
// Component will unmount
isMounted.current = false;
}
}, []);
}