我在我的網站中創建簡單的CRUD。Rails:link_to和會話
index.html.erb
<% @diots.each do |diot| %>
<tr>
<td align="center"><%= diot.id %></td>
<td align="center"><%= image_tag(diot.something, width: '50', height: '50') %></td>
<td align="center"><%= link_to session[:is_checked] ? "Running" : "Stop", (session[:is_checked] ? drive_diot_path(diot) : drive_stop_diot_path(diot)) %></td>
<td align="center"><%= link_to 'Edit', edit_diot_path(diot) %></td>
<td align="center"><%= link_to 'Destroy', diot, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
當我點擊其中的「暗戰」,會去drive.html.erb,但我回去index.html.erb,他們都在改變「停止」 。
我該怎麼辦,當我點擊其中一個「運行」,返回index.html.erb,只有一個更改爲「停止」?
感謝
您是否遵循了文檔或其示例? – Rao