拿到数据 设置state失败 烦请直接看代码这里是statestate = {
data: {}
}componentWillMount componentWillMount () { this.getTask('10-24', 'A')
}#### getTask 方法 打印数据 #### getTask = (id, bucked) => {
apis.getTask(id, bucked)
.then(data => console.log(data))
.catch(err => console.info(err))
}期望的数据是拿到的然而 当我在 getTask方法中重新设置state时 在render中打印 失败 getTask = (id, bucked) => {
apis.getTask(id, bucked)
.then(data => this.setState({data}))
.catch(err => console.info(err))
}结果render里打印的console.log(this.state.data)为什么设置state失败呢
添加回答
举报
0/150
提交
取消