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; // <-------
})
}
添加回答
举报
0/150
提交
取消