我希望能够仅创建标签,不进行编辑,但允许销毁。标签在我的帖子页面上是部分的。它的工作原理我只是想弄清楚如何将“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 %>
答案 0 :(得分:0)
试试这个
<%= tag_form.label :tag, 'TAG LABEL HERE' %>