我有一些像這樣的代碼:如何獲取塊的內容以顯示在視圖中?
<% cache "footer_links" do %>
<%= cms_snippet_content('footer_links') %>
<% end %>
而且我認爲寫一個輔助方法,這樣一:
def cached_snippet_content(snip_id)
cache(snip_id) do
cms_snippet_content(snip_id)
end
end
但是,我沒有得到我認爲任何輸出,甚至雖然,我的erb代碼如下所示:
<%= cached_snippet_content "footer_links" %>
我在做什麼錯?
你能確保'cache'方法返回一個字符串嗎 – gmalette 2012-07-10 14:34:04
Rails 3我猜? – tokland 2012-07-10 18:18:58