fetch(userLoginUrl, { method: 'POST',
headers: { 'Content-Type': 'application/json;charset=UTF-8'
},
body: JSON.stringify(userObj),
}).then(function (res) {
if (res.ok) {
res.json().then(function (data) {
//console.log(data);
if (data.code == 0) {
dataTest = data;
dataBu = true;
applyFn(data); //上面成功后再次出一个请求 ????
}
});
}
}).catch(function (err) {
// console.log(err)
});
1 回答
GCT1015
TA贡献1827条经验 获得超4个赞
fetch(userLoginUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8'
},
body: JSON.stringify(userObj),
}).then(function (res) {
if (res.ok) {
// return
return res.json().then(function (data) {
//console.log(data);
if (data.code == 0) {
dataTest = data;
dataBu = true;
applyFn(data);
return fetch(url) // 第二个请求
}
});
}
}).then(function(res){
console.log('第二请求')
}).catch(function (err) {
// console.log(err)
});
添加回答
举报
0/150
提交
取消