无法解析Vue函数中的变量

时间:2018-11-28 23:39:31

标签: javascript vue.js vuejs2 vuex

data: function () {
         return {
          selectedScope:'',
        }
      },



methods: {
   displayScope: function(newScope) {
            console.log(this.selectedScope)

            var resultArray = []
            this.tableData.forEach(function (data) {

                if (data.iog === this.selectedScope) {   // This is where the error 
                    resultArray.push(data)
                }
            });

        }
}

我似乎无法弄清楚我为什么得到:

  

无法读取未定义的属性'selectedScope'

forEach

为什么?

0 个答案:

没有答案