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