标记一个复选框,单击按钮并将其传递给其他视图

Mark a checkbox, click on button and pass it for other view

我有一个 table 有很多授权:

(...)    
<% @authorizations.each do |authorization| %>
       <tr>
         <td><%= check_box_tag 'authorization_checked' %></td>
         <td><%= authorization.number_contract %></td>
       </tr>
    <% end %>

我标记复选框并在点击按钮后:

<%= link_to 'Reserve', new_refinance_path(:search_func_cpf => params[:search_func_cpf], :search_func_registry => params[:search_func_registry]) %>

点击按钮后如何只传递其他视图检查的权限?我需要做什么来展示这个?

我明白了!这是我的解决方案,为此创建了一个存储库,看看代码:

https://github.com/eltonsantos/playing_checkboxes