我通过npm安装了验证器模块。我正在通过以下代码加载模块:
var check = require('validator').check,
sanitize = require('validator').sanitize;
它完全加载,但是当我运行此行时
data.message = sanitize(data.message).escape();
我收到“TypeError:undefined is not function”for this line。我该如何解决?
答案 0 :(得分:0)