一个容易忘的知识点,我们看下面例子就清楚了:

例子

例1:

const { xxx } = this.state;

上面的写法是es6的写法,其实就相当于:

const xxx = this.state.xxx

例2:

 const { ctx,app,service } = this

上面的这句话是一个简写,最终的含义相当于

const  ctx= this.ctx
const  app= this.app
const  service = this.service 
Logo

前往低代码交流专区

更多推荐