位置: IT常识 - 正文
推荐整理分享在html页面以导入的方式使用axios进行异步请求(html页面中利用______标签可引入jquery库),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:在html页面中下面有关document,在html页面中直接嵌入js代码,在html页面中直接嵌入js代码,在html页面中下面有关document,在html中,在html页面中直接嵌入js代码,html页面中利用______标签可引入jquery库,html页面中利用______标签可引入jquery库,内容如对您有帮助,希望把文章链接给更多的朋友!
GitHub地址:https://github.com/axios/axios
注:该页面下面有官方的帮助文档内容。
下载zip包到本地后解压
在axios-1.x\dist\esm下找到axios.min.js文件
这个文件就是后面需要导入的文件
二、导入文件首先在IDEA中的webapp文件夹下新建js文件夹,将axios.min.js文件拷贝进js文件夹中
然后新建一个html文件
在html中导入axios.min.js文件
<script src="./js/axios.min.js"></script>三、使用axios进行异步请求准备一个servlet类来处理get/post请求
package com.czx.web.servlet;import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import java.io.IOException;@WebServlet("/axiosServlet")public class AxiosServlet extends HttpServlet { @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { System.out.println("get..."); //1.接收请求参数 String username = request.getParameter("username"); System.out.println(username); response.getWriter().write("hello axios"); } @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { System.out.println("post..."); this.doGet(request, response); }}在html中加入调用axios相关方法的代码
新建一个script标签,写一个get请求
例如:
<script> axios({ method:"get", url:"http://localhost/ajxa/axiosServlet?username=test" }).then(function (resp) { alert(resp.data); })</script>运行tomcat7插件测试一下
网站提示信息
控制面板接收到对应请求及请求的内容
post请求如下:
axios({ method:"post", url:"http://localhost/ajxa/axiosServlet", data:"username=test" }).then(function (resp) { alert(resp.data); })另外可以调用axios封装的get或post方法来简写代码
axios.get("http://localhost/ajxa/axiosServlet?username=test").then(function (resp) { alert(resp.data); })axios.post("http://localhost/ajxa/axiosServlet","username=zhangsan").then(function (resp) { alert(resp.data); })学习axios框架使用的视频为04-Axios-基本使用&请求方式别名_哔哩哔哩_bilibili
上一篇:软键盘怎么打开(图文)(win7电脑软键盘怎么打开)
下一篇:comctl_32.exe进程是木马病毒吗 comctl_32进程安全吗(进程 com surrogate)
友情链接: 武汉网站建设