2

单击“星号”按钮后,我试图在 Rails 4.0 中重新渲染视图,该按钮将文章标记为收藏。

视图show.html.erb如下:

<% if article.star == "yes" %>
  <%= link_to raw("<i class='fa fa-star fa-lg'></i>"), channel_article_star_path(@channel.id, article.id), method: :put, :remote => true %>
<% else %>
  <%= link_to raw("<i class='fa fa-star-o fa-lg'></i>"), channel_article_star_path(@channel.id, article.id), method: :put, :remote => true %>
<% end %>

然后,我有以下控制器,articles_controller.rb

class ArticlesController < ApplicationController
  def star_article
    @article = Article.find(params[:article_id])
    if @article.star == "no"
      @article.update_attributes(star: "yes")
    else
      @article.update_attributes(star: "no")
    end
    respond_to do |format|
      format.html { render :template => "channels/#{params[:channel_id]}" }
    end  
  end
end 

这个想法是,通过再次渲染视图,单击链接后,我会得到正确的 CSS 类。现在,它正确地调用了 star_article 动作,因为刷新页面后我看到了正确的 CSS 类,但这只是在手动刷新之后。该respond_to方法似乎没有做它应该做的事情。

我应该使用 jQuery,还是我在这里缺少什么?如何在不调用关联路径的情况下自动刷新视图,避免刷新整个页面?谢谢!

4

1 回答 1

1

最好的方法是使用 action.js.erb 格式通过 ajax 渲染  

class ArticlesController < ApplicationController
  def star_article
    @article = Article.find(params[:article_id])
    if @article.star == "no"
      @article.update_attributes(star: "yes")
    else
      @article.update_attributes(star: "no")
    end
    respond_to do |format|
      format.js 
    end  
  end
end 

并且您应该创建一个名为 star_article.js.erb 的文件,其中包含内容

$("#container_id").html("<%= escape_javascript(partial to re render name) %>">
于 2013-11-13T06:02:21.620 回答