金字塔框架 - 您可以对同一模板调用两个单独的视图函数吗
我正在研究金字塔框架,我想知道是否可以将两个视图函数调用到同一个模板:
例如:
def view1(request)
args1 = 'a string'
return render_to_response('page.mak',{'args1'=args1}, request=request)
def view2(request)
args2 = 'a string 2'
return render_to_response('page.mak',{'args2'=args2}, request=request)
所以,请注意两者都使用 page.mak 模板。
I was playing around with the pyramid framework, and I was wondering if it is possible to call two view functions to the same template:
so for example:
def view1(request)
args1 = 'a string'
return render_to_response('page.mak',{'args1'=args1}, request=request)
def view2(request)
args2 = 'a string 2'
return render_to_response('page.mak',{'args2'=args2}, request=request)
So, note both are using the page.mak template.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不是有效的 Python。
是这样。
is not valid Python.
is though.
是的。您为什么怀疑这会是一个问题?您是否尝试过并遇到一些错误?
Yes it is. Why do you suspect this would be a problem? Have you tried it and hit some error?