1.0.1 • Published 2 years ago

itheima-taols-ddjs1 v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

安装

npm i ithei-tools-ddjs

导入

const itheima = require('ithei-tools-ddjs')

格式化时间

const dtStr = itheima.dateFormat(new Date())
//结果:2022-03-23 14:05:28
console.log(dtStr)

转义 html 中的字符

//带转换的 html 字符串
const htmlStr = '<h1 title="abc">我是 h1<span>123&nbsp</span></h1>'
//调用 htmlEscape 方法进行转换
const str = idheima.htmlEscape(htmlStr)
//结果:&lt;h1 title=&quot;abc&quot;&gt;我是 h1&lt;span&gt;123&amp;nbsp&lt;/span&gt;&lt;/h1&gt;
console.log(str)

原转义的 html 字符串

//带还原的字符串调用 htmlUnEscape 方法进行转换
const str2 = idheima.htmlUnEscape(str)
//结果:&lt;h1 title=&quot;abc&quot;&gt;我是 h1&lt;span&gt;123&amp;nbsp&lt;/span&gt;&lt;/h1&gt;
console.log(str2)

开源协议

ISC