【发布时间】:2021-05-24 02:28:55
【问题描述】:
我的项目在数据库中将用户的头像路径保存为 varchar,在后端转换为 String 并使用 JSON 将其发送到前端。如何使用这个字符串通过 Vue 显示图像?
在这里你可以看到: Image URL can be received as a "string" by frontend correctly
我试过了
<img class="user-profile-image" v-bind:src=userProfileImagePath>
<img class="user-profile-image" :src=userProfileImagePath>
<img class="user-profile-image" src=userProfileImagePath>
<img class="user-profile-image" src="userProfileImagePath">
但他们都没有工作。我该怎么办?
【问题讨论】:
-
它是否记录任何错误?
-
请显示
<img>周围的组件模板的其余部分