axios跨域 Do本尊 2018-05-22 175 阅读1分钟 跨域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); });