第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

我的帖子請(qǐng)求得到 https 響應(yīng)但不返回到新頁面(javascript)

我的帖子請(qǐng)求得到 https 響應(yīng)但不返回到新頁面(javascript)

當(dāng)年話下 2023-07-29 14:50:37
我發(fā)送了一個(gè)帖子請(qǐng)求,我得到了這樣的回復(fù)“ [符號(hào)(響應(yīng)內(nèi)部)]:{ url:'https://login.somenewloginpage'}”我想做的是我想通過該網(wǎng)址打開一個(gè)新頁面,但它不會(huì)定向到新頁面。const login= () => async () => {  const api = `somePostRequest`  fetch(api, {    method: 'post',    headers: {      'Content-Type': 'application/x-www-form-url-encoded',      Accept: 'application/json',    },  })    .then(function(res) {      return res  //maybe I should do something in this part...    })    .then(data => console.log(data));};
查看完整描述

1 回答

?
12345678_0001

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超5個(gè)贊

以下是如何使用fetch()withasync/await語法:


const login= () => async () => {


  const api = `somePostRequest`;


  const response = await fetch(api, {

    method: 'post',

    headers: {

      'Content-Type': 'application/x-www-form-url-encoded',

      Accept: 'application/json',

    },

  });


  const data = await response.json(); // { url: 'https://login.somenewloginpage'}


  window.location.replace(data.url); // <-- Redirection

};


查看完整回答
反對(duì) 回復(fù) 2023-07-29
  • 1 回答
  • 0 關(guān)注
  • 151 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)