vue img元素 :src动态绑定,本地测试没有问题,但是部署后发现动态src图片无法访问。
源代码:
<img :src="'../../static/common/'+item2.imageUrl" />
解决方法:
<img :src="require('../../static/common/'+item2.imageUrl)" />
查询了资料,解释如下:动态添加src被当做静态资源处理了,没有进行编译,所以要加上require。
vue img元素 :src动态绑定,本地测试没有问题,但是部署后发现动态src图片无法访问。
源代码:
<img :src="'../../static/common/'+item2.imageUrl" />
解决方法:
<img :src="require('../../static/common/'+item2.imageUrl)" />
查询了资料,解释如下:动态添加src被当做静态资源处理了,没有进行编译,所以要加上require。
本文标题:vue img :src动态绑定问题
本文链接:https://www.haomeiwen.com/subject/ijbagktx.html
网友评论