我有以下代码。请注意两个console.log
。我在_getChartData()
组件的另一个孩子中调用<ChartTitle>
函数。
问题是当第二次调用_getChartData()
时,它不会重新呈现下面代码的子组件。由于那里有setState
,我期待它这样做。
export default class PerformanceChart extends React.Component {
constructor(props) {
super(props);
this.state = { chart_data: [] };
this._getChartData();
}
componentDidMount() {
this._getChartData();
}
_getChartData(d = 30) {
console.log('running setState for chart data');
// AJAX GOES HERE
this.setState = ({
chart_data : [
['x', '2016-01-01', '2016-03-01', '2016-04-01', '2016-05-01', '2016-06-01', '2016-07-01', '2016-08-01'],
['Clicks', Math.random(), 200, 100, 400, 150, 250, 125, 600],
['Orders Reported', 300, 250, 100, 400, 150, 250, 40, 300],
['totals', [1050, 5042]]
]
});
};
render() {
console.log('re-rendering!');
return (
<div>
<ChartTitle chart_data={this.state.chart_data} getChartData={this._getChartData.bind(this)} />
<Chart chart_data={this.state.chart_data} />
</div>
);
}
};
这是我在控制台中获得的内容:
答案 0 :(得分:3)
我认为这是你的问题
this.setState = ({
setState
是一个函数,你需要调用它而不是赋值,即:
this.setState({
chart_data : [
['x', '2016-01-01', '2016-03-01', '2016-04-01', '2016-05-01', '2016-06-01', '2016-07-01', '2016-08-01'],
['Clicks', Math.random(), 200, 100, 400, 150, 250, 125, 600],
['Orders Reported', 300, 250, 100, 400, 150, 250, 40, 300],
['totals', [1050, 5042]]
]
});