0
有誰知道如何在幫助器中包含content_tag
?我試過包括ActionView::Helpers::TagHelper
。Rails 2.1 content_tag in Helper
有誰知道如何在幫助器中包含content_tag
?我試過包括ActionView::Helpers::TagHelper
。Rails 2.1 content_tag in Helper
你應該能夠做到這一點:
module ApplicationHelper
def something(place, url)
content_tag :li do
link_to(place, url)
end
end
end
或者讓我知道是否可行,如果你仍然有問題。
邁克 - 萊利
好的!我想到了。 content_tag方法在輔助名稱與控制器完全匹配時起作用。否則,它不會。不要問我們爲什麼我們有一些與控制器不匹配的幫手。我沒有寫他們。 – screenmutt
這可能幫助.. http://apidock.com/rails/ActionView/Helpers/TagHelper/content_tag – sp1rs
的'content_tag'方法應該是在你的'ApplicationHelper'「開箱即用的「 - 當你嘗試在你的ApplicationHelper中調用它時,你會得到一些錯誤嗎? – CDub