Подтвердить что ты не робот

Поле мангуста с типом имени

Я пытаюсь проверить и сохранить профиль Passport с этой структурой:

http://passportjs.org/guide/profile/

Это схема, в которой я придумал:

// Define the schema.
schema = new mongoose.Schema({
    // The name of this user, suitable for display.
    displayName: String,
    // Each e-mail address ...
    emails: [{
        // ... with the actual email address ...
        value: String,
        // ... and the type of email address (home, work, etc.).
        type: String
    }],
    // A unique identifier for the user, as generated by the service provider.
    id: String,
    // The name ...
    name: {
        // ... with the family name of this user, or "last name" in most Western languages ...
        familyName: String,
        // ... with the given name of this user, or "first name" in most Western languages ...
        givenName: String,
        // ... and with the middle name of this user.
        middleName: String
    },
    // The provider which with the user authenticated.
    provider: String
});

В электронном письме есть свойство, называемое "type", которое зарезервировано для типа mongoose. Как это решить?

4b9b3361

Ответ 1

Вам нужно определить поле с помощью объекта:

type: {type: String}