我有一些这样的代码:
<% 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" %>
我究竟做错了什么?