我正在试着找出一种最好的方式来表现下面的关系。
Newspaper has_many Articles
Newspaper has_many Subscribers
订阅者可以将文章保存到他们的个人主页。
两个问题:
1)关系在rails中会是什么样子?“保存”操作是什么样子的?
在我看来,以下使用has_many是不正确的:
class ArticleController < ApplicationController
def save
a = Article.find(101)
@user.saved_articles << a
end
end
2