В базе данных есть обьект, в нем есть пункт biography, который хранит в себе значение string. Необходимо вытащить это самое значение из БД и вывести в модальное окно, в modal-content. Я новичок в изучении Баз. Данных и nodejs. Нужный ли я код вывел ниже? Необходимо использовать схему, чтобы вывести это в модальное окно?
Это код Схемы:
const characterSchema = new Schema({
account: { type: Schema.Types.ObjectId, index: true, ref: 'Account' },
site: { type: Schema.Types.ObjectId, ref: 'Auth' },
name: { type: String, index: true },
desc: String,
tag: String,
info: String,
flags: { type: Number, default: 0 },
lastUsed: { type: Date, index: true },
creator: String,
state: Object,
biography: { type: String, index:true },
}, { timestamps: true });
PUG-код модального окна:
.modal-overlay
.modal
a.close-modal
svg(viewbox='0 0 20 20')
path()
// close modal
.modal-content
| There biography