我想cache
一个模板,并且我知道可以在url
中执行此操作。但是,我也想缓存的特定模板也直接指向模板:
(r'^menu/$', direct_to_template, { 'template': 'corp_menu.html' }),
有谁知道如何使用django文档将此
url
转换为cache
:django
文档显示urlpatterns = ('',
(r'^foo/(\d{1,2})/$', cache_page(60 * 15)(my_view)),
)
谢谢你的帮助
最佳答案
(r'^menu/$', cache_page(60 * 15)(direct_to_template), { 'template': 'corp_menu.html' }),
应该管用。
关于django - 直接在模板中时如何在urls.py中缓存 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6592152/