วิธีแคชรูปภาพใน React Native
ฉันจะแสดงให้คุณบันทึกภาพในแคช เราจะใช้ไลบรารีนี้เพื่อบันทึกภาพ: react-native-fs
ฉันจะแสดงให้คุณบันทึกภาพในแคช เราจะใช้ไลบรารีนี้เพื่อบันทึกภาพ: react -native-fs
ในการเริ่มใช้สตรีมไฟล์ ให้นำเข้าreact-native-fs ก่อน :
import RNFS from 'react-native-fs';
let CacheDir = RNFS.CachesDirectoryPath + '/';
{"bytesWritten": 0, "jobId": 1, "statusCode": 200}
function saveImageInCache(imageUrl, imageName) {
let filePath = CacheDir + imageName;
RNFS.downloadFile({
fromUrl: imageUrl,
toFile: filePath,
}).promise.then(response => {
if(response.statusCode == 200)
return filePath;
})
}
async function isExistImage(imagePath) {
await RNFS.exists(imagePath)
.then((exists) => {
return exists;
});
}