Django在版本1.5中使用通配符direct_to_template

时间:2013-05-30 13:16:31

标签: django

我一直在我的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'),

1 个答案:

答案 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