在同一视图方法中在渲染器之间切换的简单方法

发布于 2024-12-21 20:27:40 字数 260 浏览 1 评论 0原文

我现在像这样设置我的函数

@view_config(
    route_name = 'route_name',
    permissions = 'permissions',
    renderer = 'r.mako'
)
def r( request ):
    # stuff goes here

,我想添加功能,以便我检查某些条件(使用ajax)我将使用一个模板,否则使用另一个模板。有没有办法在金字塔中做到这一点?谢谢

I set up my function like this

@view_config(
    route_name = 'route_name',
    permissions = 'permissions',
    renderer = 'r.mako'
)
def r( request ):
    # stuff goes here

now, I want to add functionality such that I check certain conditions (using ajax) i would use one template, otherwise use another. is there a way to do this in pyramid? thanks

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

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

发布评论

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

评论(1

一影成城 2024-12-28 20:27:40

如果您可以通过谓词确定要执行的操作,则可以使用不同的渲染器多次添加视图。例如

@view_config(route_name='route', xhr=True, renderer='json')
@view_config(route_name='route', renderer='r.mako')
@view_config(route_name='route', request_param='fmt=json', renderer='json')
def r(request):
    # ...

,或者您可以通过 request.override_renderer = 'b.mako' 手动覆盖渲染器:

http://docs.pylonsproject.org/ items/pyramid/en/1.3-branch/narr/renderers.html#overriding-a-renderer-at-runtime

或者您可以通过显式渲染响应视图中的 renderrender_to_response 方法,因为如果您从以下位置返回 Response 对象,则 renderer 参数将被忽略的观点。

请注意,第一个示例中的 xhr 谓词应该足以检查 ajax 请求。另请注意,如果您不愿意,则不必为两者使用相同的视图,具体取决于情况。

Well you can add the view multiple times with different renderers if you can determine what you want to do via predicates. For example

@view_config(route_name='route', xhr=True, renderer='json')
@view_config(route_name='route', renderer='r.mako')
@view_config(route_name='route', request_param='fmt=json', renderer='json')
def r(request):
    # ...

Or you can just override the renderer manually via request.override_renderer = 'b.mako':

http://docs.pylonsproject.org/projects/pyramid/en/1.3-branch/narr/renderers.html#overriding-a-renderer-at-runtime

Or you can just explicitly render the response via the render and render_to_response methods from within the view, as the renderer argument is ignored if you return a Response object from the view.

Note that the xhr predicate in the first example should be sufficient to check for an ajax request. Note also that you don't have to use the same view for both if you don't want to, just depends.

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