我正在尝试创建一个用户可以关注或取消关注文章的应用。为此,我创建了三个模型Customer
,Article
和Pin
。
这些是关系:
Customer
has_many articles
has_many pins
Article
has_many pins
belongs_to customer
Pins
belongs_to customer
belongs_to article
我认为Pin
必须嵌套在Article
中。我的route.rb
看起来像这样:
resources :articles do
resources :pins, :only => [:create, :destroy]
end
end
在article#index
中我有一个用于创建或破坏关系的表单:
# To create
<%= form_for [article, current_customer.pins.new] do |f| %>
<%= f.submit "Pin" %>
<% end %>
# To destroy which doesn't work because i guess you can't do the form like that
<%= form_for [article, current_customer.pins.destroy] do |f| %>
<%= f.submit "Pin" %>
<% end %>
以下是相应的控制器操作:
def create
@article = Article.find(params[:article_id])
@pin = @article.pins.build(params[:pin])
@pin.customer = current_customer
respond_to do |format|
if @pin.save
format.html { redirect_to @pin, notice: 'Pin created' }
else
format.html { redirect_to root_url }
end
end
end
def destroy
@article = Article.find(params[:article_id])
@pin = @article.pins.find(params[:id])
@pin.destroy
respond_to do |format|
format.html { redirect_to root_url }
end
end
现在我的两个问题:
答案 0 :(得分:1)
您不需要表单来删除关系,链接也可以。我假设您将在索引视图中迭代您的文章 - 如果是这样,那么这样的事情怎么样?
<% @articles.each do |article| %>
...
<% if (pin = current_customer.pins.find_by_article(article)) %>
<%= link_to 'Unfollow', articles_pin_path(article, pin), :confirm => "Are you sure you want to unfollow this article?", :method => :delete %>
<% else %>
<%= link_to 'Follow', articles_pins_path(article), :method => :post %>
<% end %>
<% end %>
关于使用link_to
创建/销毁记录的一个警告是,如果禁用javascript,它们将回退到使用GET而不是POST / DELETE。有关详细信息,请参阅documentation。