样例1:
const { xxx } = this.state;
上面的写法是es6的写法,其实就相当于:
const xxx = this.state.xxx样例2:
const {comment,index,deleteComment} = this
上面的这句话是一个简写,最终的含义相当于
const comment = this.comment
const index = this.index
const deleteComment = this.deleteComment版权声明:本文为qq_41806901原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。