gpt4 book ai didi

node.js - 使用 Sequelize 进行多对多关联的令人惊讶的问题

转载 作者:太空宇宙 更新时间:2023-11-03 23:47:38 25 4
gpt4 key购买 nike

我创建了三个表 posts、tags 和 post_tags。每个帖子通过 PostTags 属于多个标签,每个标签通过 PostTag 属于多个帖子。令人惊讶的问题是,当我将 posts.id 排序为 DESC 时,标签将为空,并且联接查询结果不会返回任何标签。但是当我将 id 排序为 ASC 时,标签将显示在结果 JSON 中。有些帖子没有标签。我不知道为什么会出现这个问题。如果了解数据库类型有助于解决问题,我会使用 Postgresql。

模型结构是:

// Posts Model
const posts = (sequelize, DataTypes) => {
const posts = sequelize.define(
"posts",
{
userId: DataTypes.INTEGER,
title: DataTypes.STRING,
},
{
tableName: "posts",
timestamps: true,
paranoid: true
}
);

// Relations
posts.associate = (models) => {
posts.belongsToMany(models.tags, {
through: 'postTags',
as: 'tags',
foreignKey: 'postId',
otherKey: 'tagId'
});
}

return posts;
};

// Tags Model
const tags = sequelize.define(
"tags",
{
title: DataTypes.STRING
},
{
tableName: "tags",
timestamps: true,
paranoid: true
}
);

// Relations
tags.associate = (models) => {
tags.belongsToMany(models.posts, {
through: 'postTags',
as: 'posts',
foreignKey: 'tagId',
otherKey: 'postId'
});
}

return tags;
};

// PostTags Model
const post_tags = (sequelize, DataTypes) => {
const post_tags = sequelize.define(
"postTags",
{
postId: DataTypes.INTEGER,
tagId: DataTypes.INTEGER
},
{
tableName: "post_tags",
timestamps: true,
paranoid: true
}
);

return post_tags;
};

我通过这些选项选择了行:

const posts = models.posts.findAll({
attributes: [
'id',
'title'
],
include: [
{
model: models.tags,
as: 'tags',
required: false,
attributes: [
'id',
'title'
],
through: {
model: models.postTags,
as: 'postTags',
attributes: [
'postId',
'tagId'
]
}
}
],
order: [['id', 'desc']]
});

最佳答案

您是否将您的 Sequelize 查询记录到控制台?我从来没有遇到过任何问题,但您可能会在查询中得到一些您不期望的内容...如果您记录它们,请将它们粘贴到您的问题中...

关于node.js - 使用 Sequelize 进行多对多关联的令人惊讶的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60493829/

25 4 0
文章推荐: css -
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com