上一页 1 2 3 4 5 6 7 ··· 33 下一页
摘要: 请求信息十六进制显示 代码案例: private static String byteArr2HexStr(byte[] buf,int len){ StringBuffer sbuffer = new StringBuffer(); int cnt = 0; for (int i=0;i<len; 阅读全文
posted @ 2023-03-21 15:23 想见玺1面 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 搭建虚拟服务器环境 代码案例: public class MyHttpServer { private static int count = 1; public static void main(String[] args) throws IOException { ServerSocket ser 阅读全文
posted @ 2023-03-21 14:33 想见玺1面 阅读(14) 评论(0) 推荐(0) 编辑
摘要: axios 1、axios是什么 axios是一个基于Promise的HTTP库,可以用在浏览器和node.js中 第三方Ajax库 http://www.axios-js.com/zh-cn/docs/ 2、axios的基本用法 引入axios console.log(axios); 请求时的头信 阅读全文
posted @ 2023-03-21 13:21 想见玺1面 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 二级菜单 多个Ajax请求的并发执行 阅读全文
posted @ 2023-03-21 11:13 想见玺1面 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 使用Promise改造封装好的Ajax 常量 export const HTTP_GET = ' GET '; export const CONTENT_TYPE_FORM_URLENCODED = ' application/x-www-form-urlencoded '; export cons 阅读全文
posted @ 2023-03-21 10:25 想见玺1面 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 封装Ajax-4 封装Ajax-5 阅读全文
posted @ 2023-03-20 16:34 想见玺1面 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 封装Ajax-2 在地址上添加数据 addParam(){ const{ params } = this.options; if(!params)return; } export default Ajax; 工具函数 const serialize = param =>{ const results 阅读全文
posted @ 2023-03-20 16:03 想见玺1面 阅读(7) 评论(0) 推荐(0) 编辑
摘要: FormData 1、使用Ajax提交表单 2、FormDate的基本用法 通过HTML表单元素创建FormDate对象 const fd = new FormDate(表单元素); xhr.send(fd); 通过append()方法添加数据 const fd = new FormDate(表单元 阅读全文
posted @ 2023-03-20 14:26 想见玺1面 阅读(16) 评论(0) 推荐(0) 编辑
摘要: XHR的方法 1、abort() 终止当前事假 一搬配合abprt事件一起使用 2、setRequestHeader() 可以设置请求头信息 xhr.setRequestHeader( 头部字段的名称,头部字段的值 ) XHR的事件 1、load事件 响应数据可用时触发 IE6~IE8不支持load 阅读全文
posted @ 2023-03-20 11:23 想见玺1面 阅读(146) 评论(0) 推荐(0) 编辑
摘要: JSONP 1、JSONP的原理 script标签跨域不会被浏览器阻止 JSONP主要就是利用scrip标签,加载跨域文件 2、使用JSONP实现跨域 服务端准备好JSONP接口 https://www.imooc.com/api/http/jsonp?callback=handleResponse 阅读全文
posted @ 2023-03-20 10:49 想见玺1面 阅读(63) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 33 下一页