当前位置: 首页>>代码示例>>Python>>正文


Python defaulttags.token_kwargs方法代码示例

本文整理汇总了Python中django.template.defaulttags.token_kwargs方法的典型用法代码示例。如果您正苦于以下问题:Python defaulttags.token_kwargs方法的具体用法?Python defaulttags.token_kwargs怎么用?Python defaulttags.token_kwargs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在django.template.defaulttags的用法示例。


在下文中一共展示了defaulttags.token_kwargs方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: include_block

# 需要导入模块: from django.template import defaulttags [as 别名]
# 或者: from django.template.defaulttags import token_kwargs [as 别名]
def include_block(parser, token):
    """
    Render the passed item of StreamField content, passing the current template context
    if there's an identifiable way of doing so (i.e. if it has a `render_as_block` method).
    """
    tokens = token.split_contents()

    try:
        tag_name = tokens.pop(0)
        block_var_token = tokens.pop(0)
    except IndexError:
        raise template.TemplateSyntaxError("%r tag requires at least one argument" % tag_name)

    block_var = parser.compile_filter(block_var_token)

    if tokens and tokens[0] == 'with':
        tokens.pop(0)
        extra_context = token_kwargs(tokens, parser)
    else:
        extra_context = None

    use_parent_context = True
    if tokens and tokens[0] == 'only':
        tokens.pop(0)
        use_parent_context = False

    if tokens:
        raise template.TemplateSyntaxError("Unexpected argument to %r tag: %r" % (tag_name, tokens[0]))

    return IncludeBlockNode(block_var, extra_context, use_parent_context) 
开发者ID:wagtail,项目名称:wagtail,代码行数:32,代码来源:wagtailcore_tags.py

示例2: __render_helper

# 需要导入模块: from django.template import defaulttags [as 别名]
# 或者: from django.template.defaulttags import token_kwargs [as 别名]
def __render_helper(parser, token):

    tokens = token.split_contents()

    try:
        tag_name = tokens.pop(0)
        block_var_token = tokens.pop(0)
    except IndexError:
        raise template.TemplateSyntaxError("%r tag requires at least one argument" % tag_name)

    block_var = parser.compile_filter(block_var_token)

    if tokens and tokens[0] == 'with':
        tokens.pop(0)
        extra_context = token_kwargs(tokens, parser)
    else:
        extra_context = None

    use_parent_context = True
    if tokens and tokens[0] == 'only':
        tokens.pop(0)
        use_parent_context = False

    if tokens:
        raise template.TemplateSyntaxError("Unexpected argument to %r tag: %r" % (tag_name, tokens[0]))

    return HyperNode(block_var, extra_context, use_parent_context) 
开发者ID:DivineITLimited,项目名称:django-hyper-editor,代码行数:29,代码来源:hyper_tags.py


注:本文中的django.template.defaulttags.token_kwargs方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。