本文作者: jsweibo
本文链接: https://jsweibo.github.io/2019/10/01/%E4%BB%80%E4%B9%88%E6%98%AFLodash/
摘要
本文主要讲述了:
- 什么是 Lodash
- 规格
- 版本
- 示例
正文
什么是 Lodash
Lodash 是一个开源的 JavaScript 的实用程序库。
Lodash 的初始版本由 John-David Dalton 于 2012 年 4 月 23 日发布。
Lodash 的开发受到了 Underscore 的启发。Lodash 凭借频繁的更新,后来居上变成了 Underscore 的事实真超集。
规格
UMD
版本
- Core Build(核心构建) 仅拥有核心功能,体积最小
- Full Build(完整构建) 拥有完整功能,体积比核心构建大
示例
示例:版本号
1 | const _ = require('lodash'); |
示例:小脚本标签
1 | const _ = require('lodash'); |
输出:
1 | <div>hello, jsweibo</div> |
示例:不转义就输出
1 | const _ = require('lodash'); |
输出:
1 | <div><script>alert(new Date());</script></div> |
示例:转义后再输出
1 | const _ = require('lodash'); |
输出:
1 | <div><script>alert(new Date());</script></div> |
参考资料
本文作者: jsweibo
本文链接: https://jsweibo.github.io/2019/10/01/%E4%BB%80%E4%B9%88%E6%98%AFLodash/
本文对你有帮助?请支持我
- 本文链接: https://jsweibo.github.io/2019/10/01/%E4%BB%80%E4%B9%88%E6%98%AFLodash/
- 版权声明: 除非另有说明,否则本网站上的内容根据署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 进行许可。