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.
<%= f.button "Vote ▲" %>
我正在尝试打印文本 + Unicode 三角形。找不到语法。谢谢!
默认情况下,Rails 视图中输出的字符串会自动转义。
你需要通过告诉 Rails 字符串是 HTML 安全的来阻止它转义:
"Vote ▲".html_safe