[Vuejs]-TypeError: Failed to construct 'Headers': Invalid name

0👍

I don’t think you need to instantiate a Headers with the fetch library, this should be sufficient.

const myHeaders = {
    "content-type": "application/x-www-form-urlencoded",
    "headers": "Access-Control-Allow-Origin', '*",
    "Access-Control-Allow-Headers": "Origin, X-Requested-With",
    "Authorization ": "Bearer, mytoken"
};

Leave a comment