如何在頁面頂部確定指向它的URL後才能確定鏈接的位置。在本例中,我想將創建和編輯場景鏈接移動到頁面的頂部,但正如您可以看到編輯場景取決於首先了解@scenario_id。放置鏈接在頂部
<%= will_paginate @scens, :next_label => 'Older', :prev_label => 'Newer' %>
<div class="box">
<% for scenario in @scens %>
<% @created = scenario.created_at %>
<% @updated = scenario.updated_at %>
<% @scenario_id = scenario.id %>
<% if scenario.scenario_image.exists? %>
<%= scenario_image_tag(scenario) %>
<% end %>
<%= simple_format(scenario.description) %>
<% end %>
</div>
<% if session[:role_kind] == "controller" %>
<p>
<%= button_to "Create new scenario", :action => "create" %>
<% if @scens.size > 0 %>
<%= button_to "Edit scenario", :action => "edit", :id => @scenario_id %>
<% end %>
</p>
您的代碼正在循環遍歷@scens,並且僅在最後一個場景中出現「編輯場景」鏈接。那是對的嗎? – 2009-05-27 14:15:54