摘要: AbortController 从 v0.22.0 开始,Axios 支持以 fetch API 方式—— AbortController 取消请求: const controller = new AbortController(); axios.get('/foo/bar', { signal: 阅读全文
posted @ 2022-10-14 10:53 全玉 阅读(274) 评论(0) 推荐(0) 编辑
摘要: //iframe下载文件 function downloadFileByIfr(downLoadUrl) { // 移除旧的节点 const oldNode = document.querySelector("#g-exportOrder-iframe") if (oldNode) { docume 阅读全文
posted @ 2022-10-14 10:38 全玉 阅读(1592) 评论(0) 推荐(0) 编辑
摘要: 提交form方式打开新页面,可以跨域提交参数,而且打开新页面不会被浏览器拦截 // 打开新窗口 // postNew('http://localhost:8080',{name:'小明',age:12}) function postNew(url, params) { let form = docu 阅读全文
posted @ 2022-10-14 10:37 全玉 阅读(603) 评论(0) 推荐(0) 编辑