Я создаю таблицу, в которой используются данные из json, jones «политики» меняются, когда я нажимаю на разные ссылки на странице, дело в том, что когда я нажимаю и изменение состояния, я должен генерировать таблицу снова с JSON, но я получаюГенерировать таблицу динамически отображаемую ошибку Неисправность Ошибка: Инвариантное нарушение
Uncaught Error: Invariant Violation: processUpdates(): Unable to find child 1 of element. This probably means the DOM was unexpectedly mutated (e.g., by the browser), usually due to forgetting a
<tbody>
when using tables, nesting tags like<form>
,<p>
, or<a>
, or using non-SVG elements in an<svg>
parent. Try inspecting the child nodes of the element with React ID.0.1.0.2.3.1.1.2.0.1
.
первый раз, когда страница загружает таблицу правильно генерироваться.
module.exports = React.createClass({
onPoliciesChange: function (policiesStore) {
this.setState(policiesStore);
},
getInitialState: function() {
return {
policies: []
};
},
componentDidMount: function() {
this.unsubscribeAlertsStore = AlertsStore.listen(this.onPoliciesChange);
},
componentWillUnmount: function() {
this.unsubscribeAlertsStore();
},
cols: [
{ key: 'name', label: 'Name'},
{ key: 'severity', label: 'Severity' },
{ key: 'width', label: 'Width' },
{ key: 'pulsate', label: 'Pulsate' }
],
generateHeaders: function() {
var cols = this.cols; // [{key, label}]
// generate our header (th) cell components
return cols.map(function (colData) {
return <th key={colData.key}> {colData.label} </th>;
});
},
generateRows: function() {
var slf = this;
var cols = this.cols, // [{key, label}]
data = this.data;
//per each item
return this.state.policies.map(function (item) {
// handle the column data within each row
var cells = cols.map(function (colData) {
return <td> {item[colData.key]} </td>;
});
return <tr key={item.id}> {cells} </tr>;
});
},
render: function() {
var headerComponents = this.generateHeaders(),
rowComponents = this.generateRows();
return (
<table className="table table-condensed table-striped">
<thead> {headerComponents} </thead>
<tbody> {rowComponents} </tbody>
</table>
);
}
});