тут модуль — sequelizejs... В доках смотрю пример, самый элементарный —
Project.findOne({ where: {title: 'aProject'} }).then(project => {
// project will be the first entry of the Projects table with the title 'aProject' || null
})
и не могу понять... если я это всё в функцию хочу обернуть, как мне возвратить этот самый Project?
function findProject(projTitle){
Project.findOne({ where: {title: projTitle} }).then(project => {
// никакой return project; не помогает, конечно же(((
})
Промисы
Обсуждают сегодня