反应本地图像预取在ios中不起作用

时间:2018-08-27 17:34:35

标签: ios react-native image-caching

我想在react-native ios中预取图像。但以某种方式只能获取一些图像。 谁能帮我或提出任何更好的方法来在本机ios中预取图像?

下面是我如何预取图像

for(i=0; i< data.length; i++) {
                if(data[i].question_image) {
                    let questionImages = [];
                    questionImages.push(data[i].question_image);
                    let questionImagesPreFetchTasks = []; 
                    questionImages.forEach((p) => {
                    questionImagesPreFetchTasks.push(Image.prefetch(p));

                    Promise.all(questionImagesPreFetchTasks).then(results => {
                                    console.log("All images prefetched in parallel",questionImagesPreFetchTasks);
                                });

                });
            }
        }

0 个答案:

没有答案