11👍
“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👍
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'
}
}
}
- [Django]-Django-allauth: Linking multiple social accounts to a single user
- [Django]-Django Multiple Authentication Backend for one project
- [Django]-Form with CheckboxSelectMultiple doesn't validate
Source:stackexchange.com