6

所以我有一个包含多条消息的页面,每条消息都有一个链接,可以更改(优化)该消息的评级。当用户单击此链接时,我想要一个 AJAX 调用来更新数据库中该消息的相应列值。单击此链接时,应该不会发生任何明显的事情。不应有页面刷新或重新加载。

我一直在尝试使用 link_to remote: true 来做到这一点,但我似乎无法让它工作。在线文档在这个问题上相当不清楚,并且随着 Rails 2 和 3 之间的变化,不再支持 :with 之类的东西。

我已经复制了到目前为止的内容,但我知道它甚至远未接近解决方案。就我需要传递到数据库的参数而言,我需要 profile_id、message_id 和 new_rating。

提前致谢!

显示.html.haml

.status-bar
  = link_to "", { action: :refine_result }, remote: true

profile_controller.rb

...

def refine_result
  @refinement = ResultRefinement.new
  @refinement.profile_id = params[:profile_id]
  @refinement.message_id = params[:message_id]

  @refinement.save

  respond_to do |format|
    format.html { render nothing: true }
    format.js { render nothing: true }
  end
end

result_refinement.rb

class ResultRefinement < ActiveRecord::Base
  attr_accessible :profile_id, :message_id, :new_rating, :deleted

  belongs_to :profile
end
4

1 回答 1

7

您需要先设置路线ProfileController#refine_result。就像是

match '/profile/refine_results' => 'profile#refine_results', :as => 'refine_results'

然后你可以使用

.status-bar
  = link_to "", refine_results_url(profile_id: 1, message_id: 100, new_rating: "awful"), remote: true
于 2012-07-10T22:30:14.730 回答