📜  TypeError: JSON.stringify(...).then 不是函数 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:13.282000             🧑  作者: Mango

代码示例1
fetch('http://localhost:5000/', {
    method : 'post',
    headers :{ 'Content-Type' : 'application/json'},
    body : JSON.stringify({
         userId : this.state.userId,
         password : this.state.password
   })
}).then(response => response.json())
  .then(data => {
    if(data === 'success'){
            this.props.onRouteChange('home');
    }
})