Django dependent select

前端 未结 3 713
青春惊慌失措
青春惊慌失措 2020-12-03 11:58

I know that there is a lot of answers on this question, but i am new in Django and i dont know how to implement these solutions. First what i want to do. This is my models:<

相关标签:
3条回答
  • 2020-12-03 12:38

    I got fed up with the non-DRY solutions to this, so I wrote something maybe flexible enough for most use cases:

    django-related-select

    Right now it only handles online/AJAX related select boxes. I eventually plan (maybe this week or next) to add an offline mode that pushes a bit of rendered JS with the widget to track the onchange event of the parent and translate it to the child choices via a map of value -> list(choices). The AJAX solution is great for things like car make/model (1000s of choices) while the offline solution is great for product/color (maybe 10s of choices).

    0 讨论(0)
  • 2020-12-03 12:42

    You can use Jquery plugin chained.

    Example: http://codepen.io/anon/pen/EapNPo?editors=101

    HTML

    <select id="id_country" name="country">
        <option value="" selected="selected">---------</option>
        <option value="1">Colombia</option>
        <option value="2">Rusia</option>
    </select>
    <select id="id_city" name="city">
        <option value="" selected="selected">---------</option>
        <option value="1" class="1">Bogotá</option>
        <option value="2" class="2">Moscú</option>
        <option value="3" class="2">San Petersburgo</option>
        <option value="4" class="1">Valledupar</option>
    </select>
    

    js

    $("#id_city").chained("#id_country");
    

    Generate form with models (ForeignKey)

    Go to https://axiacore.com/blog/django-y-selects-encadenados/ complete tutorial

    0 讨论(0)
  • 2020-12-03 12:55

    well , i coded a whole project just for you , hope this could help :) :
    in this project i we have countries which have many cities
    as shown in pictures, each time you select a country , only related cities shown in next combo box :)

    iran's cities

    USA's cities

    ok , no let's see the code
    (full project source code is on my github : https://github.com/nodet07/Django-Related-DropDowns)
    models.py :
    just 2 simple models , a country which can have many cities !

     from django.db import models
        class City(models.Model):
            name = models.CharField(max_length=50)
            country = models.ForeignKey("Country")
            def __unicode__(self):
                return u'%s' % (self.name)
    
        class Country(models.Model):
            name = models.CharField(max_length=50)
            def __unicode__(self):
                return u'%s' % (self.name)
    

    views.py:

    from django.shortcuts import render
    from map.models import *
    from django.utils import simplejson
    from django.http import HttpResponse
    
    def index(request):
        countries = Country.objects.all()
        print countries
        return render(request, 'index.html', {'countries': countries})
    
    def getdetails(request):
        #country_name = request.POST['country_name']
        country_name = request.GET['cnt']
        print "ajax country_name ", country_name
    
        result_set = []
        all_cities = []
        answer = str(country_name[1:-1])
        selected_country = Country.objects.get(name=answer)
        print "selected country name ", selected_country
        all_cities = selected_country.city_set.all()
        for city in all_cities:
            print "city name", city.name
            result_set.append({'name': city.name})
        return HttpResponse(simplejson.dumps(result_set), mimetype='application/json',     content_type='application/json')
    

    index.html :

    <html>
        <head>
        <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
        <script type="text/javascript" src="http://yourjavascript.com/7174319415/script.js"></script>
            <script>
                $(document).ready(function(){
                     $('select#selectcountries').change(function () {
                         var optionSelected = $(this).find("option:selected");
                         var valueSelected  = optionSelected.val();
                         var country_name   = optionSelected.text();
    
    
                         data = {'cnt' : country_name };
                         ajax('/getdetails',data,function(result){
    
                                console.log(result);
                                $("#selectcities option").remove();
                                for (var i = result.length - 1; i >= 0; i--) {
                                    $("#selectcities").append('<option>'+ result[i].name +'</option>');
                                };
    
    
                             });
                     });
                });
            </script>
        </head>
    
        <body>
            <select name="selectcountries" id="selectcountries">
            {% for item in countries %}
                <option val="{{ item.name }}"> {{ item.name }} </option>    
            {% endfor %}
            </select>   
    
    
            <select name ="selectcities" id="selectcities">
    
    
            </select>
    
        </body>
    </html>
    
    0 讨论(0)
提交回复
热议问题