收集在 Rails 3 中的 Tag 上使用 ActsasTaggable 发布项目的用户
我正在使用 Rails 3 并在我的应用程序中充当可标记的角色。
我正在获取与标签相关的文章
Article.tagged_with("tagname")
,
Blog.tagged_with("tagname")
现在我想收集上面的所有用户 即,所有发布带有此标签的文章和博客的人 请推荐我..
I am using Rails 3 and Acts as taggable on in my application.
I am fetching the articles associated with the tag by
Article.tagged_with("tagname")
and
Blog.tagged_with("tagname")
Now i would like to collect all the users from the above
i.e.., people who are all posted articles and blogs with this tag
Please suggest me..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如,根据模型关系的设计方式,您可能可以从
Blog.tagged_with("tagname").users
访问该关系。不要忘记您可以使用
debug
来收集有关特定对象的更多信息。Depending on how your model relationships are designed you may probably access that from
Blog.tagged_with("tagname").users
for example.Don't forget you can use
debug
for collecting more information about a specific object.