1

我将如何重写此请求以使ifarticles可用并建立关系?我觉得我很接近,但我无法弄清楚。current_userarticlestemplateshas_and_belongs_to_many

current_user.brand.articles.joins(:template).where(:templates => { :id => @template.id })

谢谢你的帮助!

4

1 回答 1

1

不确定该brand关联代表什么,发布您的模型将有助于解决这个问题,但这里有一个猜测:

current_user.brand.articles.joins(:templates).where(:templates => { :id => @template.id })

您在 where 子句中使用了复数形式templates,但在连接中没有。

于 2013-07-18T02:09:25.330 回答