const { xxx } = this.data 是什么意思?

371 阅读1分钟
const { xxx } = this.data  // 是es6的新语法
// 相当于就是
const xxx=this.data.xxx