python - django模板文件中{%for%}循环可以对两个对象同时循环么?
PHP中文网
PHP中文网 2017-04-18 09:22:05
0
1
233
PHP中文网
PHP中文网

认证高级PHP讲师

répondre à tous (1)
Ty80

这有标准解决方法,就是zip

>>> l1 = ['a', 'b', 'c'] >>> l2 = ['x', 'y', 'z'] >>> l3 = zip(l1, l2) >>> l3 [('a', 'x'), ('b', 'y'), ('c', 'z')]

然后你在模板里面就可以只对l3做循环了。

    Derniers téléchargements
    Plus>
    effets Web
    Code source du site Web
    Matériel du site Web
    Modèle frontal
    À propos de nous Clause de non-responsabilité Sitemap
    Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!