在vue本地项目配置ajax
在vue本地项目配置ajax /config/index.js配置 proxyTable: { '/api': { target: 'http://localhost:8080', // 接口的域名(可改动) // secure: false, // 如果是https接口,需要配置这个参数 changeOrigin: true, // 如果接口跨域,需要进行这个参数配置 pathRewrite: { '^/api': '/static/mock' } } ajax在Home.vue 中的配置方法 import axios from 'axios' methods: { getHomeInfo () { axios.get('/api/index.json') .then(this.getHomeInfoSucc) }, getHomeInfoSucc (res) { console.log(res) } }, mounted () { this.getHomeInfo() } 来源: CSDN 作者: alex ppap 链接: https://blog.csdn.net/qq_44988115/article/details/104033877