Vue.js搭建移动端购物车界面(3)


在前端HTML部分的进行调用,需要使用v-for指令。这个指令用来循环遍历Vue中的数据,代码如下:

<ul class="cart-item-list"> 
 <li v-for="item in productList"> 
 <div class="cart-tab-1"> 
  <div class="cart-item-check"> 
  </div> 
  <div class="cart-item-pic"> 
  <img v-bind:src="item.productImage" alt="烟"> 
  </div> 
  <div class="cart-item-title"> 
  <div class="item-name">{{ item.productName}}</div> 
  </div> 
  <div class="item-include"> 
  <dl> 
   <dt>赠送:</dt> 
   <dd v-for="part in item.parts"v-text="part.partsName"></dd> 
  </dl> 
  </div> 
 </div> 
</ul> 

通过v-for指令,遍历了变量productList中的数据,并在内部的HTML中调用。利润item.productImage获取对应图片URL地址;item.productName获取商品名称等。这样,就自动生成了一个商品信息列表。

下一部分将介绍逻辑代码的编写。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持黑区网络。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/914.html