16 个日常开发必备的 JavaScript 代码片段

开发 前端
在 Web 开发领域,开发效率是关键。为什么每次开始新项目时都要重新发明轮子?今天,本文汇总整理了一些方便日常开发使用的 JavaScript 代码片段,超越了 Lodash 和 day.js 等常见代码片段,提升你的开发效率,减少工作时长。

在 Web 开发领域,开发效率是关键。为什么每次开始新项目时都要重新发明轮子?今天,本文汇总整理了一些方便日常开发使用的 JavaScript 代码片段,超越了 Lodash 和 day.js 等常见代码片段,提升你的开发效率,减少工作时长。

让我们开始吧!

1. 检测元素外的点击 

厌倦了复杂的检查以查看点击是否落在目标元素之外?使用 contains 方法简化事情,以更简洁的方式隐藏模式或折叠菜单:

document.addEventListener('click', function (evt) {
     // isClickedOutside is true if the clicked element is outside 'ele'
     const isClickedOutside = !ele.contains(evt.target);
   });

2. 快速打开官方网站 

需要查阅第三方库的文档或存储库?这些命令将快速带您到达那里:

# Open the homepage
   npm home PACKAGE_NAME
   npm home react


# Open the repository
   npm repo PACKAGE_NAME
   npm repo react

3. 一次性事件监听器 

对于只想处理一次的事件,可以利用 once 选项,而不是手动删除监听器:

const handler = function (e) {};
   ele.addEventListener('event-name', handler, { once: true });

4. 将秒数格式化为 HH:mm:ss 

显示音频或视频的时长时,以用户友好的 HH:mm:ss 格式显示秒数:

const formatSeconds = (s) =>
     [parseInt(s / 60 / 60), parseInt((s / 60) % 60), parseInt(s % 60)]
       .join(':')
       .replace(/\b(\d)\b/g, '0$1')

对于相对时间显示,如“几秒前”或“5 分钟前”,请探索 timeago.js 库!

5. 将 URL 参数转换为对象 

虽然 query-string 是一个流行的库,但可以直接使用 URLSearchParams API 实现相同的功能:

const getUrlParams = (query) =>
     Array.from(new URLSearchParams(query)).reduce(
       (p, [k, v]) =>
         Object.assign({}, p, { [k]: p[k] ? (Array.isArray(p[k]) ? p[k] : [p[k]]).concat(v) : v }),
       {}
     )


// Get query parameters
   getUrlParams(location.query)
   // { a: ['1', '4'], b: '2', c: '3' }
   getUrlParams('?a=1&b=2&c=3&a=4') 
   // Get hash parameters
   getUrlParams(location.hash.split('?')[1])

6. 安全打开新标签页 

打开新标签页看似微不足道,但需要注意安全。在外部链接时,使用 noopener noreferrer 来防止恶意网站通过 window.opener.location 重定向您的网站。这同样适用于 window.open。

<a target="_blank" rel="noopener noreferrer">...</a>


// window.open defaults rel to 'opener', so set it explicitly
   window.open('https://google.com', 'google', 'noopener,noreferrer')

警告:以下代码片段存在安全漏洞!

<a target="_blank" rel="opener">
...</a>
window.opener.location = 'http://fake.website.here';

7. 预览上传的图像 

使用 FileReader API 直接在浏览器中显示用户上传图像的预览:

function readImage() {
     const fileReader = new FileReader()
     const file = document.getElementById('uploaded-file').files[0]


    if (file) {
       fileReader.readAsDataURL(file)
     }


     fileReader.addEventListener(
       'load',
       () => {
         const result = fileReader.result
         const resultContainer = document.getElementById('result')
         const img = document.createElement('img')
         img.src = result
         resultContainer.append(img)
       },
       { once: true }
     )
   }

8. 下载文件 

使用 <a> 标签的下载属性触发下载。请记住,这对于同源文件可靠地起作用,并且在 IE 和移动设备上可能会受到限制:

<a href="/path/to/file" download>Download</a>

或者,使用 JavaScript 生成临时的 <a> 标签:

function download(url) {
     const link = document.createElement('a')
     link.download = 'file name'
     link.href = 'url'


     document.body.appendChild(link)
     link.click()
     document.body.removeChild(link)
}

对于静态文件,在服务器上设置适当的 Content-Disposition 标头也可以触发下载:

Content-Disposition: attachment; filename="filename.jpg"

除了文件下载之外,还可以使用 Blob 对象和 createObjectURL 方法创建和下载文本或 JSON 文件:

const data = JSON.stringify({ 'message': 'Hello Word' });


const blob = new Blob([data], { type: 'application/json' });
 // Create a URL for the blob
 const url = window.URL.createObjectURL(blob);
 // Download the URL using the 'download' function above
 ...


 // Release the URL object
 window.URL.revokeObjectURL(url);

9. 记忆函数结果 

使用记忆法缓存计算量大的函数的结果:

const memoize = (fn) =>
     (
       (cache = Object.create(null)) =>
       (arg) =>
         cache[arg] || (cache[arg] = fn(arg))
     )()

10. 多行省略号...

使用 CSS 用省略号截断文本内容,无论是单行还是多行:

.truncate {
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
   }


.truncate-multi {
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2; 
     overflow: hidden;
   }

11. 使用 CSS 选择最后 N 个元素 

使用 CSS 选择器定位列表中的最后几个元素:

// First three items
   li:nth-child(-n + 3) {
     text-decoration: underline;
   }


// Items 2 through 5
   li:nth-child(n + 2):nth-child(-n + 5) {
     color: #2563eb; 
   } 
   // Last two items
   li:nth-last-child(-n + 2) {
     text-decoration: line-through; 
   }

12. 自定义滚动条样式 

增强滚动条的外观和感觉:

::-webkit-scrollbar {
   width: 8px;
   height: 8px; 
}


::-webkit-scrollbar-track {
   border-radius: 10px;
   background-color: #fafafa; 
}


::-webkit-scrollbar-thumb {
   border-radius: 10px;
   background: rgb(191, 191, 191); 
}
/* Modern scrollbar API */
body {
   scrollbar-width: thin; 
   scrollbar-color: #718096 #edf2f7; 
}

请记住,滚动条样式也可以使用 better-scroll 等库来实现更高级的自定义。

13. 使用最大余数法精确计算百分比 

使用百分比时,四舍五入有时会导致总数不完全等于 100%。使用最大余数法进行准确分配:

// Outputs:  ['32.56%', '6.97%', '27.91%', '32.56%'] 
  getPercentWithPrecision([56, 12, 48, 56], 2)


function getPercentWithPrecision(valueList, precision) {
    const digits = Math.pow(10, precision)
    const sum = valueList.reduce((total, cur) => total + cur, 0)


    const votesPerQuota = valueList.map((val) => {
        return val / sum * 100 * digits
    })
    const seats = votesPerQuota.map((val) => {
      return Math.floor(val);
    });
    const remainder = votesPerQuota.map((val) => {
      return val - Math.floor(val)
    })


    let totalSeats = 100 * digits
    let currentSeats = votesPerQuota.reduce((total, cur) => total + Math.floor(cur), 0)


    while(totalSeats - currentSeats > 0) {
      let maxIdx = -1 
      let maxValue = Number.NEGATIVE_INFINITY 
      for(let i = 0; i < remainder.length; i++) {
        if (maxValue < remainder[i]) {
          maxValue = remainder[i]
          maxIdx = i
        }
      }


      seats[maxIdx]++
      remainder[maxIdx] = 0
      currentSeats++
    }


    return seats.map((val) => `${val / totalSeats * 100}%`)
  }

14. 限制并发请求 

处理大量请求时,管理并发以防止服务器不堪重负:

async function asyncPool(poolLimit, iterable, iteratorFn) {
    const ret = [];
    const executing = new Set();
    for (const item of iterable) {
      const p = Promise.resolve().then(() => iteratorFn(item, iterable));
      ret.push(p);
      executing.add(p);
      const clean = () => executing.delete(p);
      p.then(clean).catch(clean);
      if (executing.size >= poolLimit) {
        await Promise.race(executing);
      }
    }
    return Promise.all(ret);
  }


// Example usage 
  const timeout = i => new Promise(resolve => setTimeout(() => resolve(i), i));
  asyncPool(2, [1000, 5000, 3000, 2000], timeout).then(results => {
    console.log(results)
  })

15. 生成 UUID 

创建通用唯一标识符:

const uuid = (a) =>
    a
      ? (a ^ ((Math.random() * 16) >> (a / 4))).toString(16)
      : ([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, uuid)

16. 在模态框打开时禁用正文滚动 

在模态框打开时防止背景内容滚动:

// Disable body scrolling 
  document.body.style.overflow = 'hidden';


// Re-enable scrolling
  document.body.style.removeProperty('overflow');

总结

以上就是我今天想与你分享的16个日常开发中会经常遇到的一些功能需求,希望通过阅读本文内容能够对你有所帮助,如果你还有其他问题,请在留言区给我留言,我们一起交流学习进步。

责任编辑:华轩 来源: web前端开发
相关推荐

2022-06-26 09:56:50

HttpUtil工具类模式

2021-09-03 10:08:53

JavaScript开发 代码

2021-08-03 15:26:56

代码智能阿里云

2023-05-17 08:34:27

开发技术应用

2011-09-06 15:16:42

PHP

2023-03-26 07:58:04

开发工具开源

2023-05-22 15:53:06

JavaScrip代码素材

2011-07-11 10:16:07

JavaScript

2017-09-06 12:42:45

AndroidGradle开发技巧

2023-10-10 16:16:05

JavaScrip开发

2023-10-09 14:48:06

2022-07-06 08:39:33

Python代码

2021-10-29 11:05:34

JavaScript代码字符串

2024-06-21 11:02:16

2023-06-16 16:34:25

JavaScripWeb 开发

2023-11-03 16:02:00

JavaScript开发

2023-12-26 14:28:08

JavaScript开发

2024-01-04 16:46:58

JavaScript开发

2022-06-08 08:55:15

JavaScript代码前端

2017-01-10 19:06:39

Android日常开发技术经验
点赞
收藏

51CTO技术栈公众号