我们怎样才能让用户能够在这里断线?
<%= f.text_area :name, rows: 4, class: 'form-control', id: "gold-standard", placeholder: 'Enter Value' %>
理想情况下只能<br>
使用 html 元素,但最坏的情况是我们如何允许所有 html 元素,如<b>
,<u>
等?
对于后一种情况,我尝试使用:name.html_safe
ortext_area.html_safe
但那些给了我错误。谢谢!