如何获取 django 过滤器和模板中的当前内容

发布于 2024-10-17 19:00:40 字数 811 浏览 2 评论 0原文

这是我的views.py:

a=[{'s':'sss'},{'s':'wwww'},{'s':'ssaawdw'},{'s':'qqqww'}]

def main(request, template_name='index.html'):
    context ={
              'a':a,
    }
    return render_to_response(template_name, context)

这是我的过滤器:

def return_next_element(list, index):
    if(index<len(list)-1):
        return list[index+1]
    else :
        return 0

register.filter('return_next_element',return_next_element)

这是我的模板:

{% load  myfilters %}


{% for i in a %}
    {{ i }}ww{{ (a|return_element:forloop.counter0).s }}
{% endfor %}

但是,这无法获取as,

所以我能做什么,

谢谢

更新

这不是同一个问题,因为我将像这样使用:

a|return_element:forloop.counter0).s|other filter 

this is my views.py :

a=[{'s':'sss'},{'s':'wwww'},{'s':'ssaawdw'},{'s':'qqqww'}]

def main(request, template_name='index.html'):
    context ={
              'a':a,
    }
    return render_to_response(template_name, context)

this is my filter :

def return_next_element(list, index):
    if(index<len(list)-1):
        return list[index+1]
    else :
        return 0

register.filter('return_next_element',return_next_element)

and this is my template :

{% load  myfilters %}


{% for i in a %}
    {{ i }}ww{{ (a|return_element:forloop.counter0).s }}
{% endfor %}

but , this cant get the a.s ,

so what can i do ,

thanks

updated

this is not a same question , because i will use like this :

a|return_element:forloop.counter0).s|other filter 

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

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

发布评论

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

评论(1

睫毛溺水了 2024-10-24 19:00:40

对于您的情况,我建议执行以下操作:

{% for dictionary in a %}
     {% for key, value in dictionary.iteritems %}
          {{ key }}ww{{ value }}
     {% endfor %}
{% endfor %}

但要回答您的问题,请使用 with 标记。
http://docs.djangoproject.com/en/dev/ref/模板/内置/#with

{% with a|return_element:forloop.counter0 as result %}
    {{ result|other_filter }}
{% endwith %}

For your situation, I'd suggest doing the following:

{% for dictionary in a %}
     {% for key, value in dictionary.iteritems %}
          {{ key }}ww{{ value }}
     {% endfor %}
{% endfor %}

But to answer your question, use the with tag.
http://docs.djangoproject.com/en/dev/ref/templates/builtins/#with

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