在react中 在setState方法的回调函数中能否再次调用setState方法?

在componentWillMount中请求数据后,将拿到的数据setState操作后,在setState回调中能否再用state中的参数发起ajax请求后再将拿回的数据setState
componentWillMount(){

let appId = this.GetQueryString('appId')
let language = this.GetQueryString('language')
axios.post('/api/language/findAll').then(res=>{
  console.log('0000')
  for(let i=0;i<res.length;i++){
    if(res[i].en==language){
      this.setState({
        language:res[i].pid,
        appId:appId
      },()=>{
        this.queryConfig()
      })
    }
  }
})

}
queryConfig(){

let params={
  appId:this.state.appId,
  lang:this.state.language
}
axios.post('/api/spirit/config',params).then(res=>{
    console.log('第二个请求')
    this.setState({
      custom:res.spirit.custom,
      recommend:res.spirit.recommend,
      strategy:res.spirit.strategy,
    },()=>{console.log('第二次渲染')})
})

};

阅读 3k
1 个回答

可以, 完全没问题.

render 中调用 setState 才会有问题.

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题