gpt4 book ai didi

reactjs - 在react-redux中const和props指的是什么?

转载 作者:行者123 更新时间:2023-12-03 13:33:22 25 4
gpt4 key购买 nike

export default class customer  {

}

render(){
const{
handleSubmit,
pristine,
submitting
} = this.props;
return{
<div>
</div>
}
}

我的react-redux代码有这样的东西。谁能告诉我为什么我们在代码中使用 constthis.props

最佳答案

can any one tell me why we are using "const"

const是声明变量的另一种方法。这些变量不允许重新分配。 const 通常是一种更安全的变量声明方式,具体取决于开发人员的意图。

can any one tell me why we are using this.props in the code

这是赋值/解构的简写。语法是这样的:

var {
property
} = object;

您正在做的是从对象的属性创建局部变量。该代码与以下内容相同:

var property = object.property;

所以在你的代码中,你可以想到

const {
handleSubmit,
pristine,
submitting
} = this.props;

就这么简单

const handleSubmit = this.props.handleSubmit;
const pristine = this.props.pristine;
const submitting = this.props.submitting;

关于reactjs - 在react-redux中const和props指的是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40636078/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com