亲宝软件园·资讯

展开

vue过滤器filters获取不到this对象

天堂の风 人气:1

vue过滤器filters获取不到this对象

原理

下面举个例子

用filters计算data中 a+b 的值

<template>
  <div>{{a|sum(that)}}</div>
</template>

<script>
  export default {
    name: "test",
    data() {
      return {
        that: this,
        a: 1,
        b: 2
      }
    },
    filters: {
      sum(a, that) {
        console.log(that);
        return a + that.b;
      }
    },
  }
</script>

Vue filters this指向问题

Vue实例中filter不依赖于当前vue实例上下文

所以在filter中无法直接访问当前vue实例, 所以可以使用computed替代。

可是当遇到需要根据html文本改变,v-for的数据等情况而改变时,computed的功能就无法满足我们的需求了。

那我们就可以使用methods代替

data: {
    shopItemType: {}
},
methods: { 
    shopItemType2str(id){
        return this.shopItemType[id];
    }
}
<tr v-for="shopItem in shopItems">
    <td>{{shopItemType2str(shopItem.item_type)}}</td>
</tr>

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。

加载全部内容

相关教程
猜你喜欢
用户评论