的意义是什么
{...this.props}
我正在尝试那样使用它
<div {...this.props}> Content Here </div>
的意义是什么
{...this.props}
我正在尝试那样使用它
<div {...this.props}> Content Here </div>
Answers:
它被称为传播属性,其目的是使道具传递更加容易。
让我们假设您有一个接受N个属性的组件。如果数量增加,将这些信息传递下去可能是乏味且笨拙的。
<Component x={} y={} z={} />
因此,您可以这样做,将它们包装在一个对象中并使用扩展符号
var props = { x: 1, y: 1, z:1 };
<Component {...props} />
它将把它解压缩到组件上的props中,即,仅当将props传递给另一个组件时,才“永远” {... props}
在render()
函数内部使用。照常使用打开包装的道具this.props.x
。
是ES6 Spread_operator
和Destructuring_assignment
。
<div {...this.props}>
Content Here
</div>
等于 Class Component
const person = {
name: "xgqfrms",
age: 23,
country: "China"
};
class TestDemo extends React.Component {
render() {
const {name, age, country} = {...this.props};
// const {name, age, country} = this.props;
return (
<div>
<h3> Person Information: </h3>
<ul>
<li>name={name}</li>
<li>age={age}</li>
<li>country={country}</li>
</ul>
</div>
);
}
}
ReactDOM.render(
<TestDemo {...person}/>
, mountNode
);
要么 Function component
const props = {
name: "xgqfrms",
age: 23,
country: "China"
};
const Test = (props) => {
return(
<div
name={props.name}
age={props.age}
country={props.country}>
Content Here
<ul>
<li>name={props.name}</li>
<li>age={props.age}</li>
<li>country={props.country}</li>
</ul>
</div>
);
};
ReactDOM.render(
<div>
<Test {...props}/>
<hr/>
<Test
name={props.name}
age={props.age}
country={props.country}
/>
</div>
, mountNode
);
这是ES-6的功能。这意味着您可以提取道具的所有属性
div.{... }
运算符用于提取对象的属性。
您将在子组件中使用道具
例如
如果您现在的组件道具是
{
booking: 4,
isDisable: false
}
你可以在你的孩子电脑里使用这个道具
<div {...this.props}> ... </div>
在子组件中,您将收到所有父项道具。
this.transferPropsTo
在React 0.12.x中已弃用并将在0.13.x中删除的替代品。这当然让更高级的用法简单不过翻译作出反应0.11.x的this.transferPropsTo(<Foo />)
到<Foo {...this.props} />
是人们做出这种转变最有用的。