- 作者:老汪软件技巧
- 发表时间:2024-01-11 21:00
- 浏览量:
简述版 前端
{{item.cno}}
{{item.name}}
{{item.age}}
new Vue({
el: "#Zjw",
data:{
all: []
},
mounted() {
this.getAl()
//回调
//Cqnu-zjw
},
methods: {
getAl(){
//使用axios请求后台数据
axios.get("http://localhost:8081/getAll").//getAll后端接口
then(res => {
this.all = res.data
}).catch(err => {
console.log("获取不正常")
})
}
},
})
后端
@ResponseBody
@GetMapping("getAll")
public List stu(Model model) {
List students = stuService.getAll();
return students;
}
上一个的请求处理
下一个数据链路层
相关文章
元风软件管理员
元风软件技巧专注分享操作系统、办公软件和手机应用的技巧方法,致力提升软件爱好者的学习和工作效率。
热门文章