gpt4 book ai didi

ruby-on-rails - 包含和引用另一个表时无法解析的列的自定义名称

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

像这样选择具有不同名称的列名时

=> t = TeamMapping.select('team_id as team').last
=> t[:team]
> 2

有效。但是,如果我在查询中添加另一个表作为包含和引用,这种行为会突然中断。

=> t = TeamMapping.includes(:user).references(:user).select('team_id as team').last
=> t[:team]
> nil

请注意,user 表没有任何名称为 team 的列。我无法通过在谷歌上搜索找到任何相关内容。如果有人能解释幕后发生的事情,我将不胜感激。

最佳答案

试试这个

select("team_mappings.team_id AS team")

改用连接

TeamMapping.joins(:user).select('team_mappings.team_id AS team').last    

希望对您有所帮助!

关于ruby-on-rails - 包含和引用另一个表时无法解析的列的自定义名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40905150/

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