Twitter 使用 Rails 和 Mongoid 关注关系

发布于 2024-12-12 02:16:28 字数 323 浏览 0 评论 0原文

我正在开发一个与 Twitter 有着几乎相同用户关系的项目。用户可以是另一个用户(关注者)的粉丝,并且一个用户有很多粉丝(关注者)。

我如何使用 Mongoid 和 Rails 3.1 编写这个?

用户模型就足够了吗?

class User
  inc...
  inc...

  has_many :following, class_name: 'User'
  has_many :followers, class_name: 'User'

end

以前有人这样做过吗?我发现了一些关于这个问题的旧帖子,但它们已经过时了。

I'm working on a project that has almost the same user relations as Twitter. User can be a fan of another user (following) and a user has many fans (followers).

How can I write this using Mongoid and Rails 3.1?

Is it enough with the User model?

class User
  inc...
  inc...

  has_many :following, class_name: 'User'
  has_many :followers, class_name: 'User'

end

Anyone done this before? I found some old posts about this issue but they were old and outdated.

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

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

发布评论

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

评论(2

迷离° 2024-12-19 02:16:28

我做了一个关注和可关注的宝石,如果它符合你的要求,你可以尝试一下。

https://github.com/alecguintu/mongoid_follow

I've done a follow and followable gem, you can try it out if it fits your bill.

https://github.com/alecguintu/mongoid_follow

桃酥萝莉 2024-12-19 02:16:28
has_and_belongs_to_many :followers, :class_name => 'User', :inverse_of => :following
has_and_belongs_to_many :following, :class_name => 'User', :inverse_of => :followers
has_and_belongs_to_many :followers, :class_name => 'User', :inverse_of => :following
has_and_belongs_to_many :following, :class_name => 'User', :inverse_of => :followers
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文