摘要:
import dayjs from 'dayjs' //获取近几年的年份 export function handleLastYearList(num = 5, year?: string | number) { if (year) year = year.toString() const curr 阅读全文
摘要:
![](https://img2023.cnblogs.com/blog/2737721/202309/2737721-20230908111607738-727565179.png) ^(.+)((?:\r?\n.*)*)(?:\r?\n\1)$ $1$2 阅读全文
摘要:
这里调接口时记得加上responseType: 'blob' /** * @description: 下载文件 * @param {string} data 文件流 * @param {string} filename 文件名 * @return {*} */ export function dow 阅读全文
摘要:
都是根据前面的值来判断最终返回前面的值还是后面的值。 a ?? b a || b 判断的方法不同: 使用 ?? 时,只有 a 为 null 或者 undefined 时才会返回 b; 使用 || 时,a会先转化为布尔值判断,为 true 时返回a, false 返回b. ??更加适合在不知道变量是否 阅读全文
摘要:
{ "editor.fontSize": 15, "files.autoSave": "afterDelay", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "editor. 阅读全文