Lodash _.unescape
2021-09-24 10:52 更新
_.unescape([string=''])
_.escape的反向版。 这个方法转换string字符串中的 HTML 实体 &, <, >, ", ', 和 ` 为对应的字符。注意: 不会转换其他的 HTML 实体,需要转换可以使用类似 he 的第三方库。
注意: 不会转换其他的 HTML 实体,需要转换可以使用第三方库,类似he。
添加版本
0.6.0
参数
- [string=''] (string): 要转换的字符串。
返回
(string): 返回转换后的字符串。
例子
_.unescape('fred, barney, & pebbles');
// => 'fred, barney, & pebbles'
以上内容是否对您有帮助:
更多建议: