我是新来的反应者,很抱歉提出这样一个简单的问题。
我正在尝试通过在线API使用ChartJS创建图表。
我的js脚本:
constructor(props) {
super(props);
this.state = {
daily_data: [],
hourly_data: [],
currency: this.props.currency,
chartData: {}
}
this.getChartData = this.getChartData.bind(this);
}
getChartData() {
this.setState({
chartData: {
datasets: [
{
label: Object.keys(this.state.daily_data[this.state.currency]),
data: Object.values(this.state.daily_data[this.state.currency]),
fill: false,
borderColor: "rgba(255,255,255,0.1)",
backgroundColor: "rgba(0, 0, 0,0.2)",
pointBackgroundColor: "rgb(255,255,255)",
}
]
}
})
}
componentWillMount() {
fetch("https://asia-northeast1-s3688090-cc2018.cloudfunctions.net/cool-api")
.then(res=>res.json())
.then(result => this.setState({
daily_data: result,
}))
.catch(error => console.log("error" + error));
}
render() {
this.getChartData();
return (
....
)
}
问题发生在:label: Object.keys(this.state.daily_data[this.state.currency])
Uncaught TypeError: Cannot convert undefined or null to object
at Function.keys (<anonymous>)
at ViewDetails.getChartData (bundle.js:82729)
at ViewDetails.render (bundle.js:82783)
at bundle.js:55899
at measureLifeCyclePerf (bundle.js:55180)
at ReactCompositeComponentWrapper._renderValidatedComponentWithoutOwnerOrContext (bundle.js:55898)
at ReactCompositeComponentWrapper._renderValidatedComponent (bundle.js:55925)
at ReactCompositeComponentWrapper.performInitialMount (bundle.js:55467)
at ReactCompositeComponentWrapper.mountComponent (bundle.js:55363)
at Object.mountComponent (bundle.js:8034)
fetch API运行良好,因为在我的react工具中,它实际上表明状态daily_data
具有所有API值:
当我阅读文档以及关于StackOverflow的一些类似问题时,ReactJS不会立即对更新进行突变,可以调用回调来解决问题,我不确定这是否真的是问题。
谢谢。
答案 0 :(得分:1)
并用 componentWillMount()
componentDidMount()
async componentDidlMount() {
const response = await fetch("https://asia-northeast1-s3688090-cc2018.cloudfunctions.net/cool-api");
const json = await response.json();
this.setState({ daily_data: json });
}
答案 1 :(得分:0)
考虑给您的label
键一个初始值,也许是一个空数组。