我尝试使用Promise返回表的字段的值,但结果显示如下
router.get("/generateDemand", (req, res, next) => {
const entreprise = req.user.entrepriseid;
downloadFile(req, res, next, entreprise);
});
export const downloadFile = async (req, res, next, entreprise) => {
const title1 = await Entreprise.findOne({
attributes: ["entrepriseid", "titrefr"],
where: { entrepriseid: entreprise }
});
console.log("title---------->", chalk.bgBlue(title1));
}
....
执行(默认):SELECT“ entrepriseid”,“ titrefr” FROM “ entreprise” AS“ entreprise”其中“ entreprise”。“ entrepriseid” = 'SDA';标题----------> [object SequelizeInstance:entreprise] GET / attachment / generateDemand 200 71.459 ms-1638
答案 0 :(得分:0)
通过调用findOne
方法,您将返回一个Sequelize模型实例,因此,为了获取给定实例的指定字段(表记录的表示形式),应使用instance.get
方法,例如{{ 1}}