Django模板:需要2个值才能解开for循环;有很多 [英] Django template : Need 2 values to unpack in for loop; got many

查看:61
本文介绍了Django模板:需要2个值才能解开for循环;有很多的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以要更新我之前的问题: Django模板:需要2个值才能解开for循环;有8

So to update my previous question : Django template : Need 2 values to unpack in for loop; got 8

from django.shortcuts import render, redirect   
from accounts.forms import Searchform 
import requests

page=''
ville =''
region=''
prixmin =''
prixmax= ''
surfacemin='' 
surfacemax=''
def post(request):
    global page ,ville ,prixmin ,prixmax, surfacemin, surfacemax, region, annonces
    if request.method == 'POST':    
        form = Searchform(request.POST)
        if form.is_valid():
            ville = form.cleaned_data['ville']          
            prixmin = form.cleaned_data['prix_min']
            prixmax = form.cleaned_data['prix_max']
            surfacemax = form.cleaned_data['surface_max']
            surfacemin = form.cleaned_data['surface_min']
    else:
        page='1'
        form = Searchform()

    annonces = []

    try:
        url = 'example'
        img = 'example'
        ville = 'example'
        typeImmo = 'example'    
        Nb_piece = 'example'
        Nb_ch = 'example'
        surface = 'example'
        prix = 'example'
        annonces.append((url,img,ville,typeImmo,Nb_piece,Nb_ch,surface,prix))
    except:pass

    args = {'form': form, 'annonces':annonces, 'rech':len(annonces)}
    return render(request, 'accounts/page_recherche.html', args)

然后我将数据打包打包以在模板中使用.

and then I will unpack the data in annonces to use it in my template.

                {% for annonce in annonces %}
            <div class="col">
                <div class="card" style="width: 33rem;">
                    <div class="row">

                        <div class="col">
                              <a href="{{annonce.0}}" target="_blank">
                                <img class="card-img-top" src="{{annonce.1}}" alt="No image" height="180">
                              </a>
                        </div>

                        <div class="col">     
                          <ul class="list-group list-group-flush">
                            <li class="list-group-item">{{annonce.2}}</li>
                            <li class="list-group-item">{{annonce.6}} - {{annonce.4}}</li>
                            <li class="list-group-item">{{annonce.7}}</li>
                          </ul>
                       </div>
                </div>      
            </div>
            {% endfor %}

对不起,我的代码风格我是编程和python的新手.任何编写更好代码的专业技巧都将受到赞赏;)

Sorry for the style of my code I'm new at programming and at python. Any pro tips for writing better code are much appreciated ;)

谢谢!

推荐答案

有两种方法:第一个:

{% for i in annonces %}
    <h3>{{i.0}}</h3>
    <h3>{{i.1}}</h3>
    #and so on
    #..
    <h3>{{i.7}}</h3>
{% endfor %}

第二个

{% for a,b,c,d,e,f,g,h in annonces %}
    <h3>{{a}}</h3>
    <h3>{{a}}</h3>
    #and so on
    #..
    <h3>{{h}}</h3>
{% endfor %}

这篇关于Django模板:需要2个值才能解开for循环;有很多的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆