我正在尝试通过使用选择来过滤客户评论并将其部分呈现。现在部分加载@client.comments。我有一个带有分类连接的分类模型。这一切都有效,只需要知道如何让选择调用过滤器操作并使用 ajax 加载部分。谢谢你的帮助。
类别控制器:
def filter_category
@categories = Category.all
respond_to do |format|
format.js # filter.rjs
end
end
过滤器.js.erb:
page.replace_html 'client-note-inner',
:partial => 'comments',
:locals => { :com => Category.first.comments }
show.html.erb(客户端)
<% form_tag(filter_category_path(:id), :method => :put, :class => 'categories', :remote => true, :controller => 'categoires', :action => 'filter') do %>
<label>Categories</label>
<%= select_tag(:category, options_for_select(Category.all.map {|category| [category.name, category.id]}, @category_id)) %>
<% end %>
<div class="client-note-inner">
<%= render :partial => 'comments', :locals => { :com => @comments } %>
</div><!--end client-note-inner-->
希望这是有道理的。干杯。