我通过npm安装了验证器模块,我正在通过以下代码加载模块:

var check = require('validator').check,
    sanitize = require('validator').sanitize;


它加载完美,但是当我运行此行时

data.message = sanitize(data.message).escape();


我在此行中收到“ TypeError:未定义不是函数”。如何解决?

最佳答案

找到了您可能想使用的该库:

https://www.npmjs.org/package/google-caja

https://github.com/superkhau/node-google-caja

10-02 20:34