为什么我在 Rails 3 中遇到元位置连接依赖错误?

发布于 2024-12-11 07:56:45 字数 272 浏览 0 评论 0原文

我收到一个元位置连接依赖项错误,内容如下:

@companies_user = Company.joins(:contact).where(:contact => {:user_id => current_user.id}).uniq

公司 has_many 联系人

换句话说,每个联系人都有一个方法 company_id

我想向那些公司(只有一个)显示联系人的 user_id 等于执行搜索的用户的 user_id。

I get a metawhere join dependency error with the following:

@companies_user = Company.joins(:contact).where(:contact => {:user_id => current_user.id}).uniq

Company has_many contacts

In other words, every Contact has a method company_id

I want to show those companies (only one) where the contacts have a user_id equal to that of the user doing the search.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别忘他 2024-12-18 07:56:45

那么,如果您的公司有很多联系人,那么您应该包括 contacts 而不是 contact

@companies_user = Company.joins(:contacts).where(:contacts => {:user_id => current_user.id}).uniq

Well, if your company has many contacts then you should include contacts not contact

@companies_user = Company.joins(:contacts).where(:contacts => {:user_id => current_user.id}).uniq
我不咬妳我踢妳 2024-12-18 07:56:45

为什么不这样做呢?

current_user.contact.companies

然后你可以使用 .limit 只获取一个......

Why not doing it this way?

current_user.contact.companies

Then you can use .limit to only fetch one...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文