我希望能夠僅創建標籤,不進行編輯,但允許銷燬。標籤是我的帖子頁面上的一部分。它的工作原理我只是無法弄清楚如何將「text_field」中的結果放入標籤中。Rails以文本或標籤的形式顯示結果,而不是「text_field」,只允許銷燬,無更新
<%= form.fields_for :tags do |tag_form| %>
<div class="field">
<%= tag_form.text_field :tag %> #instead of this I want the result as the label for the destroy textbox.
<% unless tag_form.object.nil? || tag_form.object.new_record? %>
<%= tag_form.check_box :_destroy %>
</div>
<% else %>
CREATE NEW TAG
<% end %>
<% end %>
我相信這SO回答解釋了它最好的:http://stackoverflow.com/a/15928777/4880924 – BKSpurgeon