在return <li></li>时设置key标识, 例如取map的索引: this.props.todos.map(function(item, index) { return <li key={index}>{item.text}</li>; }) 官方文档: https://facebook.github.io/re...
在return <li></li>时设置key标识, 例如取map的索引:
官方文档: https://facebook.github.io/re...