У меня есть функция,
var findUserDevice = function(userDeviceId){
var device = db.DeviceUser.find({
where: {
id: userDeviceId
}
}).then(function(device) {
if (!device) {
return 'not find';
}
return device.dataValues;
});
};
но эта функция ничего не возвращает...
var UserDevice = findUserDevice(req.body.deviceUserId);
console.log(UserDevice);// undefined