随身笔记
随身笔记

前端资源

前端资源

js常用前端插件

推荐库 这里主要推荐一下自己平时常用,提高效率的一些库和软件。 #前端常用 sweetalert2 一个自适应,且自定义性强的弹出框(零依赖) tippy.js 最著名的 tooltip/popover library text-mask 可以让 input 按照规则输入(如电话,email,日期,信用卡等),特…

   1,577   2022-04-29   去围观

js字母数字数组混合排序

function parseItem (item) { const [, stringPart = '', numberPart = 0] = /(^[a-zA-Z]*)(\d*)$/.exec(item) || []; return [stringPart, numberPart]; } function sort (array) { return array.sort((a, b) => { const [stringA, numberA] = p…

   730   2022-04-27   去围观

git.EXE ls-remote -h -t git://github.com/adobe-webplatform/eve.git

npm ERR! Error while executing: npm ERR! C:\Program Files\Git\cmd\git.EXE ls-remote -h -t git://github.com/adobe-webplatform/eve.git npm ERR! npm ERR! fatal: remote error: npm ERR! The unauthenticated git protocol on port 9418 is no longer suppo…

   958   2022-04-08   去围观

软路由刷最新ESIR LEAN OPENWRT X86-64 固件

软路由 谷歌云盘下载地址:esir openwrt 固件-openwrt-gdq-winter[2022]-x86-64-generic-squashfs-legacy.img.gz 链接: https://pan.baidu.com/s/1dDz_PNkpYM1HgkH-oIb8AQ 提取码: g6cq 复制这段内容后打开百度网盘手机App,操作更方便哦 --来自百度网盘超级会…

   16,939   2022-04-08   去围观

跨域带cookies

前端设置: axios({ withCredentials: true, // ++ 新增 method: "get", url: "http://localhost:8003/anotherService", }).then((res) => { console.log(res); });   后端设置: app.all("*", (req, res, next) …

   594   2022-03-31   去围观
加载更多