收集在 Rails 3 中的 Tag 上使用 ActsasTaggable 发布项目的用户

发布于 2025-01-08 02:16:40 字数 231 浏览 1 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

兔姬 2025-01-15 02:16:40

例如,根据模型关系的设计方式,您可能可以从

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 debugfor collecting more information about a specific object.

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