sql >> Databáze >  >> NoSQL >> MongoDB

vytvoření registračního a přihlašovacího formuláře v node.js a mongodb

Kompletní ukázku toho, co se snažíte dělat, najdete v aplikaci Nodepad od Alex Young. 2 důležité soubory, na které byste se měli podívat, jsou tyto 2:

https://github.com/alexyoung/nodepad/blob/master/models.js
https://github .com/alexyoung/nodepad/blob/master/app.js

Část modelu vypadá takto:

  User = new Schema({
    'email': { type: String, validate: [validatePresenceOf, 'an email is required'], index: { unique: true } },
    'hashed_password': String,
    'salt': String
  });

  User.virtual('id')
    .get(function() {
      return this._id.toHexString();
    });

  User.virtual('password')
    .set(function(password) {
      this._password = password;
      this.salt = this.makeSalt();
      this.hashed_password = this.encryptPassword(password);
    })
    .get(function() { return this._password; });

  User.method('authenticate', function(plainText) {
    return this.encryptPassword(plainText) === this.hashed_password;
  });

  User.method('makeSalt', function() {
    return Math.round((new Date().valueOf() * Math.random())) + '';
  });

  User.method('encryptPassword', function(password) {
    return crypto.createHmac('sha1', this.salt).update(password).digest('hex');
  });

  User.pre('save', function(next) {
    if (!validatePresenceOf(this.password)) {
      next(new Error('Invalid password'));
    } else {
      next();
    }
  });

Myslím, že také vysvětluje kód na webu dailyjs.



  1. Rychlost MongoDB {aggregation $match} vs {find}

  2. Jaký je hlavní rozdíl mezi Redis a Membase?

  3. Přehled správy uživatelů MongoDB

  4. uložení obrázku do mongodb