我收到有关数组中每个孩子都需要钥匙的警告。我以前遇到过此问题,并且已经在Coffeescript中解决了它:"Each child in an array should have a unique key prop" only on first time render of page
我知道我必须通过map
传递密钥,以便map
调用的每个数组都将收到一个唯一的密钥。在Coffeescript中,我可以这样做:
component1 = React.createClass({
render: () ->
_.chain(@state.users).map((x) -> <component2 profile={x} key={x.id} />),@).value()
)}
component2 = React.createClass({
render: () ->
return (
<div>Test</div>
<div>Test</div>
)
})
我试图用Javascript做到这一点,而不是调用一个新组件,而是在同一组件内调用另一个函数。我仍然收到警告:
export default class About extends React.Component {
aboutMe(item) {
return (
<div className="col-xs-12">
<div className="about-body">
<p>{item.description}</p>
</div>
</div>
)
}
render() {
return (
<div className="container">
<div className="row">
<div className="col-xs-9">
{_.chain(this.props.about).map(this.aboutMe).value()} # How would I pass in a key in this `map`?
</div>
</div>
</div>
)
}
最佳答案
如果item
具有可以用作键(demo)的ID(或其他属性),则您将执行相同的操作:
aboutMe(item) {
return (
<div className="col-xs-12" key={ item.id }>
<div className="about-body">
<p>{item.description}</p>
</div>
</div>
)
}