# lodash unescape

_.escape 的反向版。

概要

_.unescape([string=''])

_.escape 的反向版。 这个方法转换 string 字符串中的 HTML 实体 &, <, >, ", ', 和 ` 为对应的字符。

注意: 不会转换其他的 HTML 实体,需要转换可以使用类似 he 的第三方库。

添加版本

0.6.0

参数

  1. [string=''] (string): 要转换的字符串。

返回 (string): 返回转换后的字符串。

例子


_.unescape('fred, barney, & pebbles');
// => 'fred, barney, & pebbles'

Last Updated: 6/17/2023, 6:57:19 PM