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
内。
为什么?