如何在Rails表单中定义特定的ID?
<%= c.text_field :description, {placeholder: "New comment", class: 'form-control', id: 'comment_text_bar#{post.id}'} %>
我已尝试过#{}
或<%=%>
,但在这种情况下它不起作用
答案 0 :(得分:3)
您应该使用双引号(“”)进行字符串插值。这应该工作
<%= c.text_field :description, {placeholder: "New comment", class: 'form-control', id: "comment_text_bar#{post.id}"} %>