0

我已经尝试了一段时间了...

<%= ("<h3>(#{@user.first_name.capitalize}" + I18n.t('helpers.s_page') + 
      I18n.t('find_something.empty_user_other')</h3>").html_safe %>

你能告诉我正确的放置方式是什么...谢谢你的帮助。

克里斯。

4

1 回答 1

1

这应该有效:

<h3>
  <%= @user.first_name.capitalize %>
  <%= I18n.t 'helpers.s_page' %>
  <%= I18n.t 'find_something.empty_user_other' %>
</h3>

html_safe假设这些<% %>部分中的字符串不包含 HTML ,那么您根本不需要使用这种方式。

于 2013-04-03T02:04:10.893 回答