Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

有关跨域的问题

$
0
0

这个是放在GitHub pages上的,在Vue组件中,应该是跨域了,但是为什么直接使用axios就能得到结果呢? 跨域一般涉及CORS或者JSONP,我这什么都没做,感觉很奇怪

axios.get('https://cnodejs.org/api/v1/topics').then(function (response) {
tt.topics = response.data.data;
console.log(tt.topics);
})
.catch(function (error) {
console.log(error);
});

Viewing all articles
Browse latest Browse all 14821

Trending Articles