码迷,mamicode.com
首页 > Web开发 > 详细

vue.js中请求数据v-for循环使用数据

时间:2017-04-16 23:55:00      阅读:2383      评论:0      收藏:0      [点我收藏+]

标签:new   ext   xxx   ready   方法   价格   idt   img   ges   

1、效果图

技术分享

2、cart.json

{
  "message":"",
  "status":"1",
  "result":{
    "totalMoney":0,
    "productList":[
      {
        "productId":"10001",
        "productName":"黄鹤楼香烟",
        "productPrice":19,
        "productQuentity":1,
        "productImage":"goods-1.jpg",
        "parts":[
          {
            "partsId":"a001",
            "partsName":"打火机"
          },
          {
            "partsId":"a002",
            "partsName":"XXX"
          }
        ]
      },
      {
        "productId":"10002",
        "productName":"加多宝",
        "productPrice":8,
        "productQuentity":1,
        "productImage":"goods-2.jpg",
        "parts":[
          {
            "partsId":"a001",
            "partsName":"吸管"
          }
        ]
      },
      {
        "productId":"10003",
        "productName":"耳机",
        "productPrice":39,
        "productQuentity":1,
        "productImage":"ear.jpeg",
        "parts":[]
      }
    ]
  }
}

3、index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">

    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0">
    <title>Title</title>
</head>
<body>
<div id="app">
<!--<h2>{{title}}</h2>-->
<!--v-for在productList集合中得到子元素item,在item中得到item的属性,或者再得到item的子元素-->
    <li v-for="item in productList">
        <div >产品名称:{{item.productName}}</div>
        <dd v-for="part in item.parts" v-text="part.partsName"></dd>
        <div>价格:{{item.productPrice}}</div>

    </li>

</div>
<script src="js/lib/vue.min.js"></script>
<script src="js/lib/vue-resource.min.js"></script>
<script src="js/cart.js"></script>
</body>
</html>

4、cart.js

/**
 * Created by kk on 2017/4/16.
 */
var vm =new Vue({
    el:"#app",
    data:{
        // title:"hello vue"
        totalMoney:0,
        productList:[]
    },
    filters:{

    },
    mounted:function () {
        //类似于jquery中的ready方法
        this.cartView();
    },
    methods:{
        cartView:function () {
    // this.title="Vue hello"
            var _this=this;
            this.$http.get("data/cart.json",{"id":123}).then(function (res) {
                _this.productList=res.body.result. productList;//body是vue封装的一层
                _this.totalMoney=res.body.result.totalMoney;
            });
}
    }

});

 

vue.js中请求数据v-for循环使用数据

标签:new   ext   xxx   ready   方法   价格   idt   img   ges   

原文地址:http://www.cnblogs.com/hongmaju/p/6720794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!