问题遇到的现象和发生背景
获取后台数据,结果赋值给数组,多了observe属性导致结果无法展示在页面
问题相关代码,请勿粘贴截图
// 表格数据
tableData: [],
filterTable:[],
};
},
methods:{
getData() {
getBase('view_teach/').then(res=>{
this.filterTable=res
this.tableData=JSON.parse(JSON.stringify(res));
console.log(res,this.filterTable,this.tableData);
})
},
},
运行结果及报错内容
这是运行结果
我的解答思路和尝试过的方法
JSON.parse(JSON.stringify(res))说是可以解决,但没变化,只要赋值就会多这个observe属性,
我想要达到的结果
只想去掉oberve属性,让页面拿到数据