次のようなコードがあります。
<% 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" %>
私は何を間違っていますか?