Vue.js Uncaught TypeError:this.list。$ remove不是函数

时间:2016-02-16 20:11:40

标签: javascript vue.js

我一直得到同样的错误,即this.list。$ remove不是一个函数。我认为它与html标记有关但不确定。谁能指出我正确的方向?我在过去的两天里一直在努力。

 Vue.component('cart-co', {

  template: '#cart-template',

  data: function() {
    return {
      list: []
    }
  },

  ready: function() {
    $.getJSON('cart/content', function(data) {
      this.list = data;
    }.bind(this));
  },

  methods: {
    removeItem: function(item) {
      console.log(item);
      this.list.$remove(item);
    }
  }
});


new Vue({
  el: 'body',
});

这是我的购物车栏目:

<cart-co></cart-co>

<template id="cart-template">
  <div class="cart-content-wrapper">
    <div class="cart-content" >
      <ul v-if="list" class="scroller" style="height: 250px;">

        <li v-for="item in list">
          <a href="item.html"><img src="assets/temp/cart-img.jpg" alt="" width="37" height="34"></a>
          <span class="cart-content-count">@{{ item.quantity }}</span>
          <strong><a href="item.html">@{{ item.name }}</a></strong>
          <em>@{{ item.price | currency }}</em>
          <a href="#" class="del-goods" v-on:click="removeItem(item)"><i class="fa fa-times"></i></a>
        </li>

      </ul>
      <ul v-else class="scroller" style="height: 250px;">
        <li>Shopping cart is empty</li>
      </ul>
      <div class="text-right">
        <a href="{{ route('cart.show-cart') }}" class="btn btn-default">View Cart</a>
        <a href="checkout.html" class="btn btn-primary">Checkout</a>
      </div>
    </div>
  </div>
</template>

2 个答案:

答案 0 :(得分:3)

如果从$.getJSON()调用回来的数据是一个对象(购物车中的每个项目都是键值对),您可以按照以下方式修改代码以处理删除项目。

假设数据如下所示:

{
   "item1": { "name": "Name 1", "quantity": 1, "price": 10 },
   "item2": { "name": "Name 2", "quantity": 1, "price": 10 },
   "item3": { "name": "Name 3", "quantity": 1, "price": 10 }
};

在删除链接中传递要删除的项目的键:

<a href="#" class="del-goods" v-on:click="removeItem($key)"><i class="fa fa-times"></i></a>

removeItem()方法更改为以下内容:

removeItem: function(key) {
  Vue.delete(this.list, key);
}

这使用Vue.delete方法删除属性(并确保视图对更改做出反应)。

答案 1 :(得分:3)

$ remove在vue js 2.0中不可用...现在你可以使用

剪接(指数,1)      “1表示它从数组中拼接出一个元素”