簡體   English   中英

無法使用axios發送帶有標頭的獲取請求

[英]Unable to send get request with headers using axios

能夠得到postman的回應。 但是無法進入axios 獲取html作為響應。 有什么問題嗎?

import axios from 'react-native-axios';

var config = {
  headers: {
    'Content-Type': 'Application/Json',
    'JsonStub-User-Key': '__USER__KEY',
    'JsonStub-Project-Key': '__PROJECT__KEY'
  }
};

export async function menuListByCategories() {
  // simulate an asynchronous operation
  const url = "http://jsonstub.com/burgers";
  axios.get(url, {config})
    .then((response) = > {
      console.log(response.data);
    })
    .
  catch ((error) = > {
    console.log("axios error:", error);
  });
}

更新: 檢查此代碼的響應

您可以在config中添加data: {} ,以免axios刪除Content-Type 檢查以下問題的答案。

Jsonstub響應未顯示

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM