博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一个vue小demo购物车
阅读量:5236 次
发布时间:2019-06-14

本文共 1574 字,大约阅读时间需要 5 分钟。

代码很简单,跟着慕课上的vue例子做的,有个问题记录下

this.$http.get("data/cartData.json").then(function(res){     // _this.productList = res.data.result.list;  })

实际需要在catch里获取json 的内容

this.$http.get("data/cartData.json")                .then(function(res){                    // _this.productList = res.data.result.list;                                    })                .catch(function(res){                    if(res instanceof Error) {                      console.log(res.message);                    } else {                      console.log(res.data);                      _this.productList = res.data.result.list;                      _this.calTotalMoney();                    }                });

 还一个涉及到引用本地cartData.json,chrome浏览器会出错,需要在浏览器快捷方式后加 --allow-file-access-from-files  

代码如下

    
shoppingCar
购物车
商品信息 商品金额 商品数量 总金额 编辑
{ {item.productName}}
赠送:
{ {part.partsName}}
{ {item.productPrice}}
{ {item.productQuentity}}
{ {item.productPrice*item.productQuentity}}
全选
取消全选
总金额 :
{ {totalMoney}}元

 

 

转载于:https://www.cnblogs.com/madlife/p/7294610.html

你可能感兴趣的文章
第六篇:对赚钱的义利观
查看>>
LeetCode 234. 回文链表
查看>>
Bootstrap 基本css样式
查看>>
生成0~9之间不重复的随机数
查看>>
台球小游戏
查看>>
WebClient DownloadStringAsync/UploadStringAsync和OpenWriteAsync/OpenReadAsync的区别
查看>>
Excel地址 (进制问题)
查看>>
POJ 1182 食物链
查看>>
【转】想象5年后的你
查看>>
记账小软件典型用户分析
查看>>
经典二叉树问题 根据前序和中序生成后序
查看>>
<ios开发入门> iTahDoodle任务管理程序
查看>>
【密码学】密码学基础
查看>>
bzoj1086 [SCOI2005]王室联邦
查看>>
省选模拟赛 至危警告
查看>>
noip2013 转圈游戏
查看>>
Homebrew学习(一)之初认识
查看>>
使用ocelot作为api网关
查看>>
.NET面试题解答
查看>>
x64汇编第一讲,Vs系列配置x64环境与x86环境
查看>>