How to preload images in React.js?

前端 未结 7 619
夕颜
夕颜 2020-12-10 11:14

How to preload images in React.js? I have dropdown select component which works like menu , but i have to preload image icons for items,because sometimes they are not visib

相关标签:
7条回答
  • 2020-12-10 11:38

    Assuming you have an images array containing data for each image, can do it in a one-liner

    componentDidMount() {
      this.props.images.forEach(image => (new Image().src = image.src));
    }
    
    0 讨论(0)
提交回复
热议问题