Vue 在for循环中的img 图片格式

图片尺寸后缀 ?x-oss-process=image/resize,w_200,h_200

<div class="add-cart" v-for="item in cartLists" :key="item.goodsId">
  <img :src="`${item.goodsPic}?x-oss-process=image/resize,w_100,h_80`" :alt="item.goodsName"/>
</div>

普通的写法

<img :src="items.goodsPic" :alt="item.goodsName"/>

猜你喜欢

转载自blog.csdn.net/weixin_43814775/article/details/112850750