React 中 require 函数内的别名
我想在 require 函数中使用别名来动态加载 img src。 组件中有一个图像项列表。因此不可能在 src 中手动导入和映射所有这些。
每当我尝试相对路径时,它都会起作用。
<img src={require('../../assets/images/' + imageurl)} alt={title} />
但如果我将这一行更改为低于一行,它就会中断。
<img src={`require(@assets/images/${imageurl})`} alt={title} />
注意:我已经在项目中设置了资产别名。
I want to use alias inside require function for dynamically load img src.
There is a list of image items in the component. So it's not possible to import and map all of them manually in src.
Whenever i am trying relative path, it's working.
<img src={require('../../assets/images/' + imageurl)} alt={title} />
But if i change this line to below one, it's breaking.
<img src={`require(@assets/images/${imageurl})`} alt={title} />
Note: I already setup my assets alias in the project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: