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.
我已经尝试了一段时间了...
<%= ("<h3>(#{@user.first_name.capitalize}" + I18n.t('helpers.s_page') + I18n.t('find_something.empty_user_other')</h3>").html_safe %>
你能告诉我正确的放置方式是什么...谢谢你的帮助。
克里斯。
这应该有效:
<h3> <%= @user.first_name.capitalize %> <%= I18n.t 'helpers.s_page' %> <%= I18n.t 'find_something.empty_user_other' %> </h3>
html_safe假设这些<% %>部分中的字符串不包含 HTML ,那么您根本不需要使用这种方式。
html_safe
<% %>