在 Mako 模板中将 def 作为函数调用

发布于 2024-10-13 13:47:31 字数 626 浏览 1 评论 0原文

我想使用 def 作为函数,并从 if 块调用它:

<%def name="check(foo)">
    % if len(foo.things) == 0:
        return False
    % else:
        % for thing in foo.things:
            % if thing.status == 'active':
                return True
            % endif
        % endfor
    % endif
    return False
</%def>

% if check(c.foo):
    # render some content
% else:
    # render some other content
% endif

不用说,这种语法不起作用。我不想只进行表达式替换(并且只渲染 def 的输出),因为逻辑是一致的,但渲染的内容因地而异。

有办法做到这一点吗?

编辑: 将逻辑包含在 <% %> 的 def 中似乎是正确的方法。

I'd like to use a def as a function, and call it from an if block:

<%def name="check(foo)">
    % if len(foo.things) == 0:
        return False
    % else:
        % for thing in foo.things:
            % if thing.status == 'active':
                return True
            % endif
        % endfor
    % endif
    return False
</%def>

% if check(c.foo):
    # render some content
% else:
    # render some other content
% endif

Needless to say, this syntax does not work. I don't want to just do an expression substitution (and just render the output of the def) as the logic is consistent, but the content rendered differs from place to place.

Is there a way to do this?

Edit:
Enclosing the logic in the def in <% %> seems to be the way to go.

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

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

发布评论

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

评论(2

如日中天 2024-10-20 13:47:31

只需在 普通 Python 中定义整个函数:

<%!
def check(foo):
    return not foo
%>
%if check([]):
    works
%endif

或者您可以在 Python 中定义该函数并传递它结合上下文。

Just define the whole function in plain Python:

<%!
def check(foo):
    return not foo
%>
%if check([]):
    works
%endif

Or you could just define the function in Python and pass it to the context.

扎心 2024-10-20 13:47:31

是的,在 def 中使用简单的 Python 语法是可行的:

<%def name="check(foo)">
  <%
    if len(foo.things) == 0:
        return False
    else:
        for thing in foo.things:
            if thing.status == 'active':
                return True

    return False
  %>
</%def>

如果有人知道更好的方法,我很乐意听到。

Yes, using plain Python syntax in the def works:

<%def name="check(foo)">
  <%
    if len(foo.things) == 0:
        return False
    else:
        for thing in foo.things:
            if thing.status == 'active':
                return True

    return False
  %>
</%def>

If anyone knows a better way, I'd love to hear it.

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