我一直在我的urls.py中使用这个catchall但当然它在django 1.5中不起作用。我可以在不知道django 1.5中的名字的情况下直接转到模板吗?
# go straight to any urls ending in .html
(r'(.+\.html)$', 'django.views.generic.simple.direct_to_template'),
答案 0 :(得分:2)
为此,您可以使用render
快捷方式,该快捷方式与已弃用的direct_to_template
具有等效签名。
# go straight to any urls ending in .html
(r'(.+\.html)$', 'django.shortcuts.render'),
请参阅https://docs.djangoproject.com/en/stable/topics/http/shortcuts/#render