ejs、vue中背景图片与img标签图片路径问题

一、vue
1、背景图片
<div class=" " :style="'background:url('+item.image+') no-repeat center center;'">

2、img
<img class=" " :src="banner.imgUrl" alt="">

二、ejs
1、背景图片
<div class=" " :style="{'background-color':logobg,'background-image': 'url('+logo+')'}"></div>

2、img
<img src="<%= mallGroup %>" alt="7000mall group">

原文地址:https://www.cnblogs.com/forward-wuyi/p/9209712.html