1.0.0 • Published 2 years ago
itheima-tools-kl v1.0.0
安装方式、导入方式、格式化时间、转义 HTML 中的特殊字符、还原 HTML 中的特殊字符、开源协议
##安装
npm install itheima-tools-kl
##导入
const itheima = require('./index')
##格式化时间
//调用dateFormat对时间进行格式化
const dt = new Date()
//结果 2022-07-09 15:49:09
const dtStr = itheima.dateFormat(dt)
##转义 HTML 中的特殊字符
//待转换的html语句
const htmlStr = '<h1 title="abc">这是一个标签<span>1234 </span>></h1>'
//调用htmlEscape进行HTML的转换
//输出结果为 <h1 title="abc">这是一个标签<span>1234&nbsp</span>></h1>
const str = itheima.htmlEscape(htmlStr)
##还原 HTML 中的特殊字符
//调用htmlUnEscape方法进行HTML的还原
//结果为 <h1 title="abc">这是一个标签<span>1234&nbsp</span>></h1>
const str2 = itheima.htmlUnEscape(str)
##开源协议 ISC
1.0.0
2 years ago