我在文件中收到了上述警告。我的RowForm
render
函数中包含以下代码:
const RowForm = React.createClass({
render: function() {
return (
<tr key={'#'} className="addIpsetListRow">
<td className="col-lg-1"></td>
<td className="col-lg-3">
<input type="text"
.................
................)
});
上面的代码只是创建一个row
的表单,我不知道我应该把它作为一个关键来使警告消失。
答案 0 :(得分:0)
如果您没有数据,则不幸的是您必须使用随机数或时间戳。例如
<tr key={+new Date()} className="addIpsetListRow">