除了与特定查询相关联的说明之外,我还尝试正确查询符合我的续集查询的所有图片,但是我收到了createdAt
列的错误,该列未找到在我的桌子上。如何在查询中指定要使用的列?
这是查询(模式和颜色被正确地拉入查询中):
router.get('/:pattern/:color/result', function(req, res){
console.log(req.params.color);
console.log(req.params.pattern);
Images.findAll({
where: {
pattern: req.params.pattern,
color: req.params.color
}
});
//console.log(image);
//console.log(doc.descriptions_id);
res.render('pages/result.hbs', {
pattern : req.params.pattern,
color : req.params.color,
image : image
});
});
这是我的表:
CREATE TABLE `images` (
`id` int(5) NOT NULL AUTO_INCREMENT,
`pattern` varchar(225) DEFAULT NULL,
`color` varchar(225) DEFAULT NULL,
`imageUrl` varchar(225) DEFAULT NULL,
`imageSource` varchar(225) DEFAULT NULL,
`description_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `description_id` (`description_id`),
CONSTRAINT `images_ibfk_1` FOREIGN KEY (`description_id`) REFERENCES `description` (`description_id`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=latin1;
这是错误:
Executing (default): SELECT `id`, `pattern`, `color`, `imageUrl`, `imageSource`, `description_id`, `createdAt`, `updatedAt` FROM `images` AS `images` WHERE `images`.`pattern` = 'solid' AND `images`.`color` = 'navy-blue';
Unhandled rejection SequelizeDatabaseError: ER_BAD_FIELD_ERROR: Unknown column 'createdAt' in 'field list'
at Query.formatError (/Users/user/Desktop/Projects/node/assistant/node_modules/sequelize/lib/dialects/mysql/query.js:160:14)
答案 0 :(得分:9)
默认情况下,sequelize假定您的表中有时间戳。这可以全局禁用
new Sequelize(..., { define: { timestamps: false }});
或按型号:
sequelize.define(name, attributes, { timestamps: false });
或者,如果您只有一些时间戳(fx已更新,但未创建)
sequelize.define(name, attributes, { createdAt: false });
如果您的列被调用其他内容:
sequelize.define(name, attributes, { createdAt: 'make_at' });
http://docs.sequelizejs.com/en/latest/api/sequelize/
通过这种方式,您不必每次都指定所有属性 - sequelize知道它实际可以选择哪些属性。
如果您真的想指定应选择哪些属性 默认你可以使用范围
sequelize.define(name, attributes, { defaultScope { attributes: [...] }});
这将应用于每个查找呼叫
答案 1 :(得分:2)
您可以显式设置要在查询中检索的属性(列名称)。例如,如果您想要检索id
,pattern
,color
,imageUrl
和imageSource
列,可以使用以下代码:
Images.findAll({
where : {
pattern: req.params.pattern,
color: req.params.color
},
attributes : ['id', 'pattern', 'color', 'imageUrl', 'imageSource']
})