gpt4 book ai didi

javascript - React - 如何在不使用构造函数的情况下访问 Prop

转载 作者:数据小太阳 更新时间:2023-10-29 04:04:58 25 4
gpt4 key购买 nike

注意:我在使用 React Native 时遇到了这个特定问题,但我想这通常也适用于 React。

我有一个使用 React.Component 构建的 React 组件。我不需要设置状态,但我确实有 Prop 。我建议的语法如下:

class Header extends Component {
constructor(props) {
super(props);
}
render() {
return <div>{this.props.title}</div>;
}
}

我知道我可以使用一个函数来构建这个组件,就像这样:

const Header = (props) => {
return <div>{props.title}</div>;
}

但我更喜欢前者,因为我的组件会增长,可能有状态等,我只想让我的所有组件以类似的方式构建。

现在,我的 linter 提示有一个无用的构造函数,但是在保留类构造函数而不是函数构造函数的同时,我还能如何访问 props?

最佳答案

If you want to use this.props in the constructor, you need to pass props to super. Otherwise, it doesn't matter because React sets .props on the instance from the outside immediately after calling the constructor.

如果没用就简单地删除constructor()

关于javascript - React - 如何在不使用构造函数的情况下访问 Prop ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46836196/

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