Twitter 使用 Rails 和 Mongoid 关注关系
我正在开发一个与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我做了一个关注和可关注的宝石,如果它符合你的要求,你可以尝试一下。
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