为了账号安全,请及时绑定邮箱和手机立即绑定

vue数据加载不出

vue数据加载不出

下雨不停的雨婷 2017-04-16 20:13:48
new Vue({     el: '.wrap',     data: {         addressList: [],         productList: [],         sendMessage: ''     },     mounted: function() {     this.$nextTick(function() {         this.getAddressList();         this.getProductList();         this.getSendMessage();     });     },     methods: {         getAddressList: function() {             this.$http.get('data/address.json', {}).then(res => {             this.addressList = res.data.result;             });         },         getProductList: function() {             this.$http.get('data/cart.json', {}).then(res => {             this.productList = res.data.result.productList;             });         },         getSendMessage: function() {             var _this = this;             this.addressList.forEach(function(item, index) {                 if (item.isDefault) {                      _this.sendMessage = item.streetName + item.userName + item.postCode;                 }             });         }     }});其他地方都正常运行了this.addressList返回的是json数据streetName userName postCode 都在json里有大概是这样的json在html里 用 {{ sendMessage }} 引用数据了sendMessage并没有改变值是不是不能这么写函数?
查看完整描述

目前暂无任何回答

  • 0 回答
  • 1 关注
  • 3543 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信