Vue.js这在计算属性中是未定义的

时间:2018-10-13 22:20:46

标签: javascript vue.js vuejs2 vue-component

我有以下型号为selectedProp的输入标签:

<input type="text" v-model="selectedProp" />

我想遍历这样的项目:

<div v-for="item of filteredItems">{{item.prop}}</div> 

以下是该组件的脚本:

export default {
  name: 'App',
  data() {
    return {
      items: [],
      selectedProp: "",
      projects: [],
      errors: []
    }
  },
  created() {
   axios.get(`${URL}`)
   .then(response => {
      // JSON responses are automatically parsed.
      this.items = response.data;
    })
    .catch(e => {
      this.errors.push(e)
    });

  },

  computed: {
    filteredItems() {
      if(this.selectedProp) {
        console.log(this.selectedProp);
        return this.items.filter(function (item) {
          return item.prop == this.selectedProp;
        });

      }
      return this.items;

    }
  },
}

错误

  

这在计算属性内部未定义

1 个答案:

答案 0 :(得分:1)

在这种情况下,您可以使用有权访问this对象的箭头功能

 return this.items.filter( (item)=> {
      return item.prop == this.selectedProp;
    })