已经在这里卡了一天了。找了很多解决办法,比如重启,修改proxytable等等,但是每次但是404,求助各位大佬,怎么解决?
1、代码
(1)config的index.js
(2) App.vue
<template><div><button @click="getStudents">获取学生信息</button></div>
</template><script>
import axios from 'axios'
export default {name: 'App',methods:{getStudents(){axios.get('http://localhost:8080/students').then(response =>{console.log('请求成功',response.data);},error=>{console.log('请求失败',error.message);})}}
}
</script>