0

我一直在我的 urls.py 中使用这个包罗万象,但当然它在 django 1.5 中不起作用。我可以直接转到模板而不知道它在 django 1.5 中的名称吗?

# go straight to any urls ending in .html
(r'(.+\.html)$', 'django.views.generic.simple.direct_to_template'),
4

1 回答 1

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

于 2013-05-30T13:26:16.323 回答