我有以下与 Sequelize 相关的模型。

Event hasMany Characters through characters_attending_boss
Boss hasMany Characters through characters_attending_boss
Characters hasMany Event through characters_attending_boss
Characters hasMany Boss through characters_attending_boss

这些表已成功连接,我可以从中检索数据。但是当我检索 JSON 结果时,直通模型的名称被添加到每个对象中,如下所示:
{
   id: 1
   title: "title"
   -confirmed_for: [ //Alias for Event -> Character
       -{
          id: 2
          character_name: "name"
          -confirmed_for_boss: [ // Alias for Boss -> Character
              -{
                   id: 9
                   name: "name"
                   -character_attending_event: { // name of through-model
                         event_id: 1
                         char_id: 2
                   }
               }
    ]
    -character_attending_boss: { // name of through-model
          event_id: 1
          char_id: 2
    }
}

因此,如果可能,我正在寻找一种方法来隐藏这些“character_attending_boss”段,最好不要更改提取后的结果。

这可能吗?

最佳答案

同样的问题在这里解决:https://github.com/sequelize/sequelize/issues/2541

对我来说,添加 through: {attributes: []} 以包含块在 Sequelize 2.0 上运行良好

关于json - 使用 sequelize 防止将连接表数据添加到 json,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26362965/

10-16 08:58