金字塔框架 - 您可以对同一模板调用两个单独的视图函数吗

发布于 2024-10-21 09:18:46 字数 367 浏览 8 评论 0原文

我正在研究金字塔框架,我想知道是否可以将两个视图函数调用到同一个模板:

例如:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

三人与歌 2024-10-28 09:18:46

{'args1'=args1}

不是有效的 Python。

{'args1':args1}

是这样。

{'args1'=args1}

is not valid Python.

{'args1':args1}

is though.

月下凄凉 2024-10-28 09:18:46

是的。您为什么怀疑这会是一个问题?您是否尝试过并遇到一些错误?

Yes it is. Why do you suspect this would be a problem? Have you tried it and hit some error?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文