cross domain at axios

后端 未结 2 469
生来不讨喜
生来不讨喜 2021-01-04 06:22

I am changing jquery ajax for axios and I not getting use axios with cross domain:

axios.get(myurl, {
            headers: { \'crossDomain\': true },
                


        
相关标签:
2条回答
  • 2021-01-04 06:49

    "crossDomain" does not have to be in headers

    axios.get(myurl, {
        crossDomain: true
    }).then(res => { 
        console.log(res);
    }).catch(error => {
        console.log('error', error);
    })
    

    Regards

    0 讨论(0)
  • 2021-01-04 07:05

    In my case @nuxtjs/proxy solved issue

    https://nuxtjs.org/faq/http-proxy/

    I inserted @nuxtjs/proxy in nuxt.config.js and edited proxy setting

    I used api server and an rest api

    proxy: {
    '/api': {
      target: 'http://127.0.0.1:8080',
      pathRewrite: {
        '^/api' : '/api'
        },
    },
    '/zip': {
      target: 'http://zipcloud.ibsnet.co.jp',
      pathRewrite: {
        '^/zip' : '/api'
        }
    }
    }
    
    0 讨论(0)
提交回复
热议问题