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