我有一個Mongoid模型,看起來像這樣: class V1Cache
include Mongoid::Document
field :boro, :type => String
embeds_one :cache_data
end
class CacheData
include Mongoid::Document
field :tax_b
我想將博客及其標籤存儲爲單獨的文檔。 博客文章應該有tag_ids字段和標籤不應該有blog_posts_ids字段。 Mongoid提供了許多開箱即用的關係,但它需要多對多關係的文檔都有_ids字段。 class BlogPost
include Mongoid::Document
field :title
references_many :tags, :store
我需要用戶能夠成爲其他用戶的粉絲。我應該如何設計/設置它? 我需要能夠查看用戶粉絲的詳細信息。 例如。我有用戶:Foo。 Foo有3個粉絲。我希望能夠找到Foo粉絲的名字。因此: foo = User.first
foo.name (returns 'Foo')
foo.fans.first.user.name (should return 'bar', since 'bar' is a fa
我正在從事To-Do應用程序以獲得Rails3和MongoDB的一些練習。 我有一個項目是一個標籤,一個標籤將有許多與它相關的項目。 我的問題:show.html.erb不想顯示標籤名稱。 # models/item.rb
class Item
include Mongoid::Document
field :name
field :completed, :type => Boolean