08 2021 档案
css 元素定位后不遮挡后边的元素
摘要:css 设置: div { pointer-events: none; } 阅读全文
posted @ 2021-08-29 14:52 W1N9s 阅读(328) 评论(0) 推荐(0)
XMLHttpRequest POST 传数组参数
摘要:传数组参数:xhr.send(JSON.stringify(Array)) const xhr = new XMLHttpRequest(); xhr.open('POST', '/test', true); // 设置请求头要放在 open 和 send 之间 xhr.setRequestHead 阅读全文
posted @ 2021-08-10 16:04 W1N9s 阅读(3211) 评论(0) 推荐(0)
axios下载文件,文件损坏,无法打开
摘要:下载 excel 文件,无法打开 原因:responseType: 'blob' 配置不正确 axios({ url: '/test', method: 'post', responseType: 'blob', data: {}, haeders: {}, }) .then((res) => { 阅读全文
posted @ 2021-08-10 15:58 W1N9s 阅读(1152) 评论(0) 推荐(0)