使用vue.js 的$set报错

<script>

new Vue({
    el: '#app',
    data:function () {
      return{
          items:[]
      }
    },
    mounted : function() {
        this.getItems();
    },
    methods:{
        getItems:function () {
           this.$http.get('resourse.json').then(function (response) {
               var data=JSON.parse(response.data)
               this.$set('items', response.data)

               this.items=data.list
               console.log(this.items)
           });
        }
    }
});

</script>

clipboard.png

阅读 7.8k
1 个回答
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题