这个是放在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);
});