本文介绍了仅从 Sequelize ORM 中获取 dataValues的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 sequelize ORM 从 PSQL DB 中获取数据.但是,当我检索某些东西时,会给出一大堆数据.我想要的唯一数据在dataValues"内.当然,我可以使用object.dataValues.但是,还有其他好的解决方案吗?
I'm using the sequelize ORM to fetch data from a PSQL DB. However, when I retrieve something, a whole bunch of data is given. The only data I want is inside 'dataValues'. Of course, I can use object.dataValues. But, is there any other good solutions?
我正在使用 Sequelize 4.10
I'm using Sequelize 4.10
推荐答案
只有当我使用以下方法记录时才会出现问题:
The problem occurs only when I log it using:
console.log(Model.findAll());
如果我将它保存到一个变量中,我可以直接访问里面的对象而不使用dataValues"
If I save it to a variable, I can directly access objects inside without using "dataValues"
这篇关于仅从 Sequelize ORM 中获取 dataValues的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!