我将带有html标签的文本发送到我的rails服务器。我想要的是将标签解析为html,但将其显示为常规文本。
text = '<p>some text</p>'
class ContributeTestMailer < ActionMailer::Base
default from: "from@example.com"
def contribute_test_mailer(test)
@test = test
mail(to: 'mail', subject: 'subject')
end
end
<div>
<%= @text %>
</div>
结果电子邮件,纯文字:
<p>some text</p>
答案 0 :(得分:0)
尝试以下
<%= raw @text %>
或强>
<%== @text %>