为了账号安全,请及时绑定邮箱和手机立即绑定

在React组件中,如何使用fetch( )的返回值?

在React组件中,如何使用fetch( )的返回值?

喵喔喔 2018-12-20 18:15:55
React通过fecth异步加载数据,但是fecth之后,如何才能让我使用返回的值呢?  getInitialState:function(){    return{      result:''    }  },  proceedSubmit:function(userID,userPWD){    var res = 'Not Set';    fetch('http://127.0.0.1:80/csu/Search.php',{      method:'POST',      mode:'cors',      headers:{        'Content-Type': 'application/x-www-form-urlencoded'      },      body:'userID='+userID+'&userPWD='+userPWD    }).then(function(response){      return response.text().then(function(text){        res = text;        console.log(res);      });    }).then(function(){      console.log(res);    });    console.log(res);  },像这样跨域fecth之后,得到了返回值text,第一二个输出确实是返回的值,但是第三个却是初始的“Not Set”。我该怎么样才能使用fetch回来的值呢?让它改变我的state。
查看完整描述

1 回答

?
蝴蝶刀刀

TA贡献1801条经验 获得超8个赞

proceedSubmit: function(userID, userPWD) {

    var res = 'Not Set';

    var _this = this;           // <-------

    fetch(....).then(function(response) {

        _this.someData = text;  // <-------

    })

}


查看完整回答
反对 回复 2019-01-15
  • 1 回答
  • 0 关注
  • 1542 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信