fetch('http://192.168.0.113:8000/api/v1/react/fetch_conversation_action/')
.then(res => res.json())
.then(action => this.setState({action}, () => console.log(action)))
console.log(this.state);
我正在对API进行访存调用,但得到响应,但是发生的事情是我必须设置状态,但是没有发生,我知道react setState在设置状态时晚了一步,我可以将值记录到控制台,但是一旦进入设置状态,它不会更新状态