Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ruby on railsでブログを作っています。しかし、フォームにコンテンツ用のフィールドを作成すると、プレーン テキストしか表示できません。フィールド コンテンツから HTML テキストを表示するにはどうすればよいですか。
ありがとう
In controller: @some_variable = "<p>Hi there</p>" In the view: <%= @some_variable.html_safe %>
html_safeは、文字列を最初にエスケープせずに表示しても問題がないことをレールに通知します。