我有两个列表:
我要检查我的每个菌株的复制ID是否在所选菌株的列表中,在python中应该是这样的:
for strain in strainInfo:
if strain.replicateID in [selectedStrain.replicateID for selectedStrain in selectedStrainInfo]
print('This strain is selected')
我在Django中获得了正确的功能,但我想知道是否有方法可以简化使用列表理解:
{% for row in strainInfo %}
{% for selectedStrain in selectedStrainsInfo %}
{% if row.replicateID == selectedStrain.replicateID %}
checked
{% endif %}
{% endfor %}
{% endfor %}
List comprehensions are not supported in Jinja
您可以通过JJJA将数据传递给类似于so的JavaScript变量
var strainInfo = {{strainInfo|safe}};
var selectedStrainInfo = {{selectedStrainInfo|safe}};
然后在那里打扫卫生。
使用金佳的safe
过滤防止您的数据被Html转义。
这篇关于“金家”中的列表理解的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!