在我的金字塔应用程序中,我在 tutorial/tutorial/pages/name.html 下有几个静态 html 文件(例如)。我怎样才能为此编写一个可调用的视图?这行得通吗?
@view_config(renderer='view_page')
def view_page(request):
return {} # no values have to be passed to the template
然后在init .py 文件中
config.add_route('view_page', 'tutorial:pages/{name}.html')
我需要在 def view_page(request) 函数中放入什么来专门调用该 name.html 文件然后显示其内容?