const {document} = this.props和({document} = this.props)有什么区别
const {document} = this.props
和({document} = this.props)
有什么区别?我在很多情况下使用const {document} = this.props
,并且我想知道它是否会影响应用性能?const {document} = this.props和({document} = this.props)有什么区别
回答:
/* document key from this.props is stored in const document & it called destructing object (introduced in es6) */
const {document} = this.props;
而({document} = this.props)以可变的关键文件返回对象。意思是如果您稍后更改文档值,它也会反映在this.props中(不推荐)。
以上是 const {document} = this.props和({document} = this.props)有什么区别 的全部内容, 来源链接: utcz.com/qa/260995.html