我正在使用 Rails 4,遇到了非常奇怪的问题。原始和截断不能一起正常工作。
<%= raw(job.description)%> # working properly
<%= raw(truncate(job.description,:length => 200))%> # Not strip html tags
<%= truncate((raw job.description),:length => 200)%> # Not strip html tags
问题是什么?
请问有什么帮助吗??