在使用 vuex actions 里的 异步函数 (async)时,出现regeneratorRuntime is not defined 错误
问题:
使用 ES7 的 async/await 时报错。
原因:regeneratorRuntime在浏览器上无法识别,需要安装一个
babel-plugin-transform-runtime插件
在使用 vuex actions 里的 异步函数 (async)时,出现regeneratorRuntime is not defined 错误
问题:
使用 ES7 的 async/await 时报错。
原因:regeneratorRuntime在浏览器上无法识别,需要安装一个
babel-plugin-transform-runtime插件
html:
1 | <input id="fileSelect" type="file" accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" /> |
Valid Accept Types:
对于 CSV 文件 (.csv), 使用:
1 | <input type="file" accept=".csv" /> |
对于Excel 2003-2007 (.xls)文件, 使用:
1 | <input type="file" accept="application/vnd.ms-excel" /> |
对于Excel 2010 (.xlsx)文件, 使用:
1 | <input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" /> |
对于文本 (.txt)文件, 使用:
1 | <input type="file" accept="text/plain" /> |
正则匹配正整数和小数
1 | let _check = /^([1-9][\d]{0,6}|0)(\.[\d]{1,2})?$/; //限制小数点前后位数 |
原理就是通过a标签的href属性将二进制表格数据转化为表格,再通过download属性将文件下载到本地;
需要注意的是接口请求的数据类型要设置为 blob 类型 具体参考 axios https://www.npmjs.com/package/axios
1 | responseType: 'blob' |
element-ui 日期组件最大日期和最小日期
1 | <el-date-picker |
padStart(targetLength [, padString]) 方法用另一个字符串填充当前字符串(重复,如果需要的话),以便产生的字符串达到给定的长度。填充从当前字符串的开始(左侧)应用的。
targetLengt 目标长度
padString 补充的字符串
Win10系统 安装 nrm 出现报错:
nrm : 无法加载文件 C:\Program Files\nodejs\nrm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1