如何在Rails输入中定义id

时间:2017-06-04 07:57:33

标签: ruby-on-rails ruby

如何在Rails表单中定义特定的ID?

<%= c.text_field :description, {placeholder: "New comment", class: 'form-control', id: 'comment_text_bar#{post.id}'} %>

我已尝试过#{}<%=%>,但在这种情况下它不起作用

1 个答案:

答案 0 :(得分:3)

您应该使用双引号(“”)进行字符串插值。这应该工作

<%= c.text_field :description, {placeholder: "New comment", class: 'form-control', id: "comment_text_bar#{post.id}"} %>