我正在尝试建立关联:
Thing.associate = models => {
Thing.hasMany(models.TemplateTimeSpan, { foreignKey: {
name: 'templateTimeSpanID',
allowNull: true
}
});
模型如下:
事物:
TemplateTimeSpan.associate = models => {
TemplateTimeSpan.belongsTo(models.Mechanic, { foreignKey: 'templateTimeSpanID' });
};
TemplateTimeSpan:
TemplateTimeSpans
当我提取then
的{{1}}中的所有Promise.all
时,它将返回所有它们,并且它们都具有templateTimeSpanID: null
,但是updatedSpans
具有{ {1}}。