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

fetch 可以同步请求数据吗?

fetch 可以同步请求数据吗?

波斯汪 2018-10-12 14:13:33
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)

});


查看完整回答
反对 回复 2018-11-08
  • 1 回答
  • 0 关注
  • 2890 浏览
慕课专栏
更多

添加回答

举报

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