vue脚手架解决跨域问题-------配置反向代理
// 配置反向代理,解决跨域请求 proxyTable: { '/api': { target: 'http://www.ajax.cn', changeOrigin: true, pathRewrite: { '^/api': '/api' } } },
// 导入axios import axios from 'axios' axios.defaults.baseURL='http://localhost:8080' axios.get('/api/json.php').then(function(res){ console.log(res); });