标签: javascript reactjs ecmascript-6
在React Js中,我们可以通过两种方式传递组件道具:
<Component prop1={value} prop2="value" prop3={this.othervalue} />
或
let props = { prop1: value, prop2: "value", prop3: this.othervalue } <Component {...props} />
哪种变体更好?
答案 0 :(得分:2)