是否可以动态更改 web2py 视图?

发布于 2024-12-25 07:08:50 字数 87 浏览 0 评论 0原文

您可以更改控制器中 web2py 使用的视图吗?理想情况下,我有兴趣做类似的事情:

response.view = 'NewViewName'

Can you change the view being used by web2py in the controller? Ideally I'd be interested in doing something like:

response.view = 'NewViewName'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

-黛色若梦 2025-01-01 07:08:50

您已经完全了解了,但请确保在 /views 文件夹中包含视图的相对路径。因此,如果您有 /views/default/other_view.html,您可以执行以下操作:

response.view = 'default/other_view.html'

您还可以直接渲染任何视图:

def myfunc():
    context = dict(...)
    return response.render('default/other_view.html', context)

请参阅 此处这里

You've got it exactly, though be sure to include the relative path to the view within the /views folder. So, if you have /views/default/other_view.html, you can do:

response.view = 'default/other_view.html'

You can also directly render any view:

def myfunc():
    context = dict(...)
    return response.render('default/other_view.html', context)

See here and here.

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