在Vue中引入Axios并用来发起Ajax请求

在Vue中引入Axios并用来发起Ajax请求在 Vue 工程的 main js 中 引入 axios 并绑定到 this http 中 在 vue 文件的 method 中 编写方法 方法体里边 便可以通过 this http 发起 ajax 请求了

大家好,欢迎来到IT知识分享网。

在Vue中引入Axios并用来发起Ajax请求

一、安装

npm install axios

二、引入

在 Vue 工程的 main.js 中,引入 axios ,并绑定到 this.$http

async getStudentData() { const { data: res } = await this.$http.get(`http://www.linhongcun.club/student/getAllStudentByPage/${this.studentVO.page}/${this.studentVO.size}`); this.studentData = res.content; this.studentVO.total = res.totalElements; console.log(this.studentVO) }

三、使用

在 .vue 文件的 method 中,编写方法,方法体里边,便可以通过 this.$http 发起 ajax 请求了!

async getStudentData() { const { data: res } = await this.$http.get(`http://www.linhongcun.club/student/getAllStudentByPage/${this.studentVO.page}/${this.studentVO.size}`); this.studentData = res.content; this.studentVO.total = res.totalElements; console.log(this.studentVO) }

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/175038.html

(0)
上一篇 2025-03-31 07:10
下一篇 2025-03-31 07:20

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注微信