axios

    0熱度

    1回答

    我試圖決定在我的React/Redux應用程序裏面用來過濾我用axios.get()獲取的JSON數據。基本上我希望能夠選擇我想要的數據的「視圖」,並根據該選擇過濾數據。 這應該在動作創建者內完成嗎?例如: export function fetchData() { axios.get(DATA_URL) .then(res => { // logic to fil

    3熱度

    1回答

    雖然工作在我的web應用程序,特別是文件上傳,瀏覽器顯示一個警告後,我打電話給一個警告: 調用「警報()'在執行微任務時已棄用,並將在2016年9月左右的M53中刪除。有關更多詳細信息,請參閱https://www.chromestatus.com/features/5647113010544640。 但是我認爲在我的情況下,調用是有道理的,我有點擔心,一旦M53發佈,我的代碼就無法工作。請注意,

    30熱度

    4回答

    這看起來很愚蠢,但我試圖在Axios中請求失敗時獲取錯誤數據。 axios.get('foo.com') .then((response) => {}) .catch((error) => { console.log(error) //Logs a string: Error: Request failed with status code 404 })

    2熱度

    2回答

    如何從愛可信調用一個函數然後下面是我的代碼是不工作 handleClick(userid){ axios.get( "http://localhost:4000/user/"+userid+"/items.json") .then(function (response) { dispatch(this.buildhtml.bind(response))

    1熱度

    2回答

    我正在使用axios攔截器在請求標頭中設置授權令牌。 axios.interceptors.request.use(config => { config.headers.Authorization = 'Bearer ' + Auth.getToken() return config }) 我如何測試我的請求是否在頭中使用正確的標記發送? 詩:我使用的是摩卡+柴

    1熱度

    1回答

    嘿,我是新的反應我的要求是,當用戶點擊一個按鈕一個Ajax獲取請求被解僱了服務器和基於接收到的響應我必須準備的HTML和顯示它。下面 是我的代碼它不工作..它可以在jQuery中使用async: false來解決,但我沒有使用該 任何想法如何使用愛可信 import React from "react"; import axios from "axios" class UserItems e

    3熱度

    2回答

    我有這樣 axios.interceptors.response.use(undefined, err=> { const error = err.response; console.log(error); if (error.status===401 && error.config && !error.config.__isRetryRequest) {

    4熱度

    1回答

    我在本地運行Flask-Restful API並從其他端口發送包含JSON的POST請求。我發現了錯誤 No 'Access-Control-Allow-Origin' header is present on the requested resource. 然而,當我運行 curl --include -X OPTIONS http://localhost:5000/api/comments

    0熱度

    3回答

    我不知道爲什麼我的axios promise的結果不會顯示在呈現函數中。順便說一句,我正在使用create-react-app工具。 _getPrice() { const url = 'https://api.coinbase.com/v2/prices/BTC-USD/spot'; axios.get(url) .then(function (response) { //con

    6熱度

    2回答

    我在api中有一個ajax函數,我正在使axios從我的反應js組件獲取請求。我如何訪問返回的數據以在網頁上顯示它。