图片在数据库中以路径形式存储,在前端显示表格时,显示图片,请问用node+vue怎么实现呢
const httpRequestUrl = "http://localhost:8080/工程上下文"
var imgUrl = "/img/xxx.jpg"//从数据库获取到的路径
<img :src="httpRequestUrl + imgUrl" style="width: 30px;border-radius: 15px;height: 30px;"/>
