How to preload images in React.js?

前端 未结 7 633
夕颜
夕颜 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:25

    This works:

    import im1 from 'img/im1.png'
    import im2 from 'img/im2.png'
    import im3 from 'img/im3.png'
    
    componentDidMount() {
        imageList = [im1, im2, im3]
        imageList.forEach((image) => {
            new Image().src = image
        });
    }
    

提交回复
热议问题