Lodash - escape 方法



语法

_.escape([string=''])

将 string 中的字符 "&", "<", ">", """, and "'" 转换为对应的 HTML 实体。

参数

  • [string=''] (字符串) − 要转义的字符串。

输出

  • (字符串) − 返回转义后的字符串。

示例

var _ = require('lodash');
var result = _.escape('Joe, Robert, & Julie');
console.log(result);

将上述程序保存在tester.js中。运行以下命令以执行此程序。

命令

\>node tester.js

输出

Joe, Robert, & Julie
lodash_string.htm
广告