How to give Image src dynamically in react js?

前端 未结 4 1563
后悔当初
后悔当初 2020-12-10 11:25

I am trying to give image name in src dynamically. I want to set image name dynamically using variable with path. but I am not able to set src correctly. I tried solutions o

4条回答
  •  有刺的猬
    2020-12-10 11:57

    Dynamic require doesn't seems to be clean and also eslint isn't happy with it (not sure why)

    Other two approaches if images are stored in public folder :

    const imgNameWithPath = '/fullImageNameWithPath.jpg'

    1. Using env

    2. Using location origin:

提交回复
热议问题