vue-cli3 axios
添加axios: vue add axiosmain.js中引入import axios from "axios";Vue.prototype.$axios = axios;get请求方式post请求方式axios.post('/api/news/matches', {page: 1,limit: 10,}).then((re...
·
- 添加axios: vue add axios
- main.js中引入
import axios from "axios"; Vue.prototype.$axios = axios;
- get请求方式
- post请求方式
axios.post('/api/news/matches', { page: 1, limit: 10, }) .then((response) => { console.log(response); }) .catch((error) =>{ console.log(error); });
5.跨域的问题在vue.config.js中配置
更多推荐
已为社区贡献2条内容
所有评论(0)