0
我想在CMS應用程序中的兩個模型之間有一對多和多對多的關係。 情況如下。2個模型之間的多重關聯 - Rails 3
- 所有者(用戶)有許多內容,內容擁有所有者
- 用戶有很多的內容,內容擁有衆多用戶
我的模型如下:
class User < ActiveRecord::Base
has_many :mycontent, :class_name => "Content", :as => "owner"
has_many :content_users
has_many :contents, :through => :content_users
end
class Content < ActiveRecord::Base
has_attached_file :attachment
belongs_to :owner, :class_name => "User"
has_many :content_users
has_many :users, :through => :content_users
end
爲某些原因,這對我來說工作不正常。 請幫忙。 謝謝。
你可以在「不正常」了一下詳細點嗎? – bassneck