私はこのヘルパーが正しく動作するように努力していません。これは私が持っているものですが、確かに動作しません。Railsヘルパーでタグのサニタイズを防ぐ方法を教えてください。
def registration_link step, step_number
path = registration_path step
classes = []
classes << 'current' if current_step?(step)
# how do I add the following line to appear before the link ?
step_icon = "<span class='step_number'>#{step_number}</span>"
link_to step_icon + t("registration.menu.#{step}"), path, :class => classes.join(' ')
end
私はstep_icon
がlink_to
内に表示するために取得しようとしていますし、t("registration.menu.#{step}")
によって生成された単語の前に私が時々そこに得ることができるようだが、タグは<>
も同様に消毒されている。..
アイデア
ニースのリファクタリングが、タグは、まだ救出tothe .. – Trip
Content_Tag剥奪を受けることにこれを書きます!本当にありがとうJesse! – Trip