假设我有一个这样的url列表:['/images/1','/images/2',...]我想预取n那些使得图像之间的转换更快。我现在在做什么componentWillMount是以下内容:componentWillMount(){const{props}=this;const{prefetchLimit=1,document=dummyDocument,imgNodes}=props;const{images}=document;consttoPrefecth=take(prefetchLimit,images);constmerged=zip(toPrefecth,imgNodes)