首页 > 解决方案 > 续集选择并包含另一个表别名

问题描述

我正在使用 sequelize 访问 postgres 数据库,我想查询一个城市,例如包括“建筑”表,但我想将输出重命名为“建筑”并返回 http 响应,但我有这个错误:

{ SequelizeEagerLoadingError: 建筑物使用别名与城市相关联。您已包含一个别名(建筑物),但它与您的 a 协会中定义的别名不匹配。

    City.findById(req.params.id,{
      include: [
        {
          model: Building, as: "buildings"
        }
      ]
    }).then(city =>{
      console.log(city.id);
         res.status(201).send(city);
    }) .catch(error => {
     console.log(error);
     res.status(400).send(error)
   });

城市模型

            const models = require('../models2');
            module.exports = (sequelize, DataTypes) => {
              const City = sequelize.define('city', {
              name: { type: DataTypes.STRING, allowNull: false },
                status: { type: DataTypes.INTEGER, allowNull: false },
                latitude: { type: DataTypes.BIGINT, allowNull: false },
                longitude: { type: DataTypes.BIGINT, allowNull: false },

              }, { freezeTableName: true});
              City.associate = function(models) {
                // associations can be defined here
                 City.hasMany(models.building,{as: 'building', foreignKey: 'cityId'})
              };
              return City;
            };

标签: node.jspostgresqlsequelize.jssequelize-clisequelize-typescript

解决方案


正如您在下面的代码中定义的别名一样building

City.hasMany(models.building,{as: 'building', foreignKey: 'cityId'})

但是在查询中,您正在使用buildings

include: [
  {
     model: Building, as: "buildings" // <---- HERE
  }
]

它应该是building

include: [
   {
         model: Building, as: "building" // <---- HERE
   }
]

推荐阅读