gpt4 book ai didi

python - 如何在 Django 中检查匹配列表?

转载 作者:太空宇宙 更新时间:2023-11-03 14:34:14 25 4
gpt4 key购买 nike

假设:

strings = ["abc", "a", "bc"]
str = "bc"

我想:

{% if str is in strings %}

这在 Django 中似乎是不允许的。如果不是,检查列表中值的正确语法或方法是什么?

最佳答案

这是一个在 Google App Engine 上运行的应用程序。这是一个可以解决问题的自定义过滤器:

from google.appengine.ext.webapp import template
from django import template as django_template

def in_list(value, arg):
"""
Given an item and a list, check if the item is in the list.
Usage:
{% if item|in_list:list %}
in list
{% else %}
not in list
{% endif %}
"""
return value in arg

register = template.create_template_register()
ifinlist = register.filter(in_list)

关于python - 如何在 Django 中检查匹配列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4643545/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com