gpt4 book ai didi

reactjs - React 有传递 props 的简写吗?

转载 作者:行者123 更新时间:2023-12-03 13:07:48 24 4
gpt4 key购买 nike

我厌倦了一直这样做:

<Elem x={x} y={y} z={z} />
<Elem x={this.props.x} y={this.props.y} z={this.props.z} />

有什么办法可以让这样的事情发挥作用吗?

<Elem x, y, z />

<Elem {x, y, z} />

最佳答案

如果您的变量包含在一个对象中,例如 this.props,则您可以传播该对象:

<Elem {...this.props} />

否则,您将传播一个包含所需变量的新对象:

{...{ x, y, z }}

尽管它无缘无故地创建了一个新对象。

关于reactjs - React 有传递 props 的简写吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42620847/

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