导轨移除“s”;关闭“business”这个词,因为它认为它是复数形式?

发布于 2024-10-11 16:49:45 字数 210 浏览 6 评论 0原文

Category.where(:name => params[:category]).joins(:business)

让我困惑:

uninitialized constant Category::Busines

为什么它总是错过业务或检测不到模型?我确信是我在这里搞砸了。 :(

Category.where(:name => params[:category]).joins(:business)

Gets me:

uninitialized constant Category::Busines

Why does it keep on missing an s off business or not detecting the model? I am sure it is me messing up here. : (

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

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

发布评论

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

评论(2

倾城月光淡如水﹏ 2024-10-18 16:49:45

结果是,业务多元化并没有在我的模型中得到应用,而且还需要加入声明

joins(:businesses)

感谢您的评论,因为它让我再次以不同的角度审视我所写的内容。

It ended up being that the pluralization of businesses had not been applied everywhere across my models and also the join needed to state

joins(:businesses)

Thank you for the comments as it made me look again in a different light at what I had written.

橘亓 2024-10-18 16:49:45

您需要指定与关系相同的名称,在本例中为 :businesses

Category.where(:name => params[:category]).joins(:businesses)

You'll want to specify the same name as the relation, in this case :businesses.

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