class Author
has_many :articles, through: :autor_articles_association
has_many :author_articles_associations
end
class AuthorArticleAssociation
belongs_to :author
belongs_to :article
end
class Article
has_many :authors, through: :autor_articles_association
has_many :author_articles_associations
end
现在假设,AuthorAritleAssociation 的 model 里面有一个 column: some_attribute
问题:
1.现在有实例 author 和 article, 那么 在类似 author << article 这种操作过程中,能设置中间表的 some_attribute 属性。类似于这类函数 author.add_articles(article: article, some_attribute: "value")
2.在完成关联的情况下,是否有类似函数 author.author_articles_associations_with(article)
感谢