Reactjs中{…this.props}的含义是什么


119

的意义是什么

{...this.props}

我正在尝试那样使用它

 <div {...this.props}> Content Here </div>

Answers:


201

它被称为传播属性,其目的是使道具传递更加容易。

让我们假设您有一个接受N个属性的组件。如果数量增加,将这些信息传递下去可能是乏味且笨拙的。

<Component x={} y={} z={} />

因此,您可以这样做,将它们包装在一个对象中并使用扩展符号

var props = { x: 1, y: 1, z:1 };
<Component {...props} />

它将把它解压缩到组件上的props中,即,仅当将props传递给另一个组件时,才“永远” {... props}render()函数内部使用。照常使用打开包装的道具this.props.x


2
只是添加,它可以帮助您将其视为this.transferPropsTo在React 0.12.x中已弃用并将在0.13.x中删除的替代品。这当然让更高级的用法简单不过翻译作出反应0.11.x的this.transferPropsTo(<Foo />)<Foo {...this.props} />是人们做出这种转变最有用的。
Mike Driver

13
很好的遮篷,但是“只有在将props传递给另一个组件时,您才“永远”不要在render()函数内使用{... props}。这是一个非常令人困惑的用语。推荐重写为“当将props传递给另一个组件时,您仅在render()内部使用{... props}”。为了清楚。
dprogramz

17

是ES6 Spread_operatorDestructuring_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
);

在此处输入图片说明

裁判


1

它将编译为:

React.createElement('div', this.props, 'Content Here');

如您在上方看到的,它将所有道具传递给div



1

您将在子组件中使用道具

例如

如果您现在的组件道具是

{
   booking: 4,
   isDisable: false
}

你可以在你的孩子电脑里使用这个道具

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

在子组件中,您将收到所有父项道具。


好的答案,但是如果您包含有关道具用途的说明,那就更好了。
Mike Poole
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.