suchen

Heim  >  Fragen und Antworten  >  Hauptteil

node.js - 关于passport-local-mongoose自定义错误的问题

最近做一些Node的上手练习,然后打算做一个用户认证,看到一些资料推荐passport-local-mongoose,尝试的做了一下Demo,能跑起来,本来打算根据文档给的方法,自定义一下错误,但是发现不行,我的代码如下

var options = {
    UserExistsError :'用户名已存在!'
};

Account.plugin(passportLocalMongoose,options);

module.exports = mongoose.model('Account', Account);

但是实际情况中


报错仍然如上图所示,不知道有没有人用户passport-local-mongoose这款插件,指导一下错误在哪

PHP中文网PHP中文网2780 Tage vor542

Antworte allen(1)Ich werde antworten

  • 迷茫

    迷茫2017-04-17 13:12:16

    已解决,翻了下源码,发现网络上现有的教程有问题,应该是

    var options = {errorMessages:
            {UserExistsError :'用户名已存在!'}
    };

    Antwort
    0
  • StornierenAntwort