简体   繁体   中英

Axios Network error on post request React.js but works on Postman

I did a post request in Postman with adding Api-key in header from Authorization options which works completely fine but when i tried to do the same thing in React.js it gives me Network error. I think i'm missing anythink in my post request but don't know what.

Note:- I don't have the access to the server so can't change anything in their.

Code for request

import React, { useEffect } from 'react'
import axios from 'axios';



function Card() {

    useEffect(() => {

        axios.post("url is provided", { data: "" },
            {
                withCredentials: true,
                headers:
                {
                    'Api-key': 'api-key is provided',
                    'Content-Type': 'application/json',
                },
            }
        )
            .then((response) => console.log(response, "response"))
            .catch((err) => console.log(err, "err"))

    }, [])


    return (
        <div className='card'>
            
        </div>
    )
}

export default Card

Post Man

在此处输入图像描述

Error in Console

在此处输入图像描述

Network tab在此处输入图像描述

If you are using create-create-app for the client, you can use a proxy so that the request will go like this:

Client -> React Server (Proxy) -> Backend endpoint

This way, it will look like you're sending a request to your server and the browser doesn't complain.

Add a proxy field in package.json

"proxy": "https://backend-enpoint-here.com/"

now in the frontend you can simply call

axios.post("/api/some-endpoint")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM