vuejs axios实现跨域http请求接口
Posted HAOYIN-JACK
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vuejs axios实现跨域http请求接口相关的知识,希望对你有一定的参考价值。
跨域post实例,用到了qs组件来避开ajax信使请求,并兼容android。
import axios from ‘axios‘;
import qs from ‘qs‘;
axios.post(‘http://www.xyz.com/request‘, qs.stringify(params))
.then(response => {
console.log(response);
})
.catch(err => {
console.log(err);
});
以上是关于vuejs axios实现跨域http请求接口的主要内容,如果未能解决你的问题,请参考以下文章