反向版 _.escape。 这个方法转换 HTML 实体 &, <, >, ", ', 以及 ` 为对应的字符。 注意: 不会转换其他的 HTML 实体,需要转换可以使用类似 he 的第三方库。
_.escape
&
<
>
"
'
`
要转换的字符串
返回转换后的字符串
_.unescape('fred, barney, & pebbles'); // => 'fred, barney, & pebbles'