前端-常用函数记录-持续更新

Posted chineseliao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端-常用函数记录-持续更新相关的知识,希望对你有一定的参考价值。

// 获取当前路径下?问号后边的值
GetQueryString = function (name) { const reg = new RegExp (`(^|&)${name}=([^&]*)(&|$)`); const href = window.location.href; const index = href.indexOf(‘?‘); const r = href.substr(index + 1).match (reg); if (r != null) return unescape (r[2]); return null; };
调用示例:
  获取
“https://www.google.com/search?q=baidu” 这个路径 “q” 后面的 “baibu
  templateId(‘q‘);
  "baidu"
// 全局唯一ID函数 uuid
GetUuid = function () {
return ‘xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx‘.replace (/[xy]/g, c => { let r = (Math.random () * 16) | 0; let v = c == ‘x‘ ? r : (r & 0x3) | 0x8; return v.toString (16); }); }
调用示例:
  GetUUid();
  "327aaf38-c195-4000-b5c4-d36bf9b2894e"

 

// 对象数组去重
arrayUnique = function (songs) { const result = {}; const finalResult = []; for (let i = songs.length - 1; i >= 0; i--) { result[songs[i].name] = songs[i]; } Object.keys(result).map((item) => finalResult.push(result[item])); return finalResult; }

// 拉取某个文件夹下面的所有文件
loadAllFile = function (‘filePath‘,‘fileExp‘) {     const filesMD = require.context(filePath, true,fileExp); return filesMD.keys(); }

 

以上是关于前端-常用函数记录-持续更新的主要内容,如果未能解决你的问题,请参考以下文章

回归 | js实用代码片段的封装与总结(持续更新中...)

前端Util.js-ES6实现的常用100多个javaScript简短函数封装合集(持续更新中)

SQL Server 常用函数使用方法(持续更新)

js常用函数和常用技巧

MIPS rop gadgets记录贴&&持续更新

小程序各种功能代码片段整理---持续更新