Ajax如何使用动态Django下拉列表?

时间:2015-11-04 20:35:57

标签: python ajax django dynamic-list

我正在制作这个带有2个地址的小型网络应用程序,使用谷歌地图计算距离,并根据车辆的mpg等级计算燃气成本。一切都很完整,除了我相信最适合AJAX的最后一部分。

我有3个列表(年份,品牌,型号),我需要根据汽车的年份和品牌限制车型列表。选择之后,我有一个按钮,一旦点击,将验证它是否是数据库中的有效车辆并拉动车辆的mpg等级来对其进行一些基本数学运算。

问题是我真的不知道如何解决这个问题。我在过去的几个小时里搜索了一些问题,我得到了许多与模型表格和Django选择领域有关的内容,如果我没有,我不想进入至。我的想法是只更改innerText /值,并将其与我的django数据库进行核对。

我也从SO那里得到了这个答案:

How do I integrate Ajax with Django applications?

我有点困惑。如果我理解正确,AJAX GET请求将在javascript对象中提取数据,就像我作为用户访问该URL一样。这是否意味着我可以创建另一个html模板并将数据库中的每辆车发布到该页面上,从中我可以从中提取信息并从中创建动态列表?

寻找使用ajax动态生成列表的最简单方法,并使用我的数据库验证年份,制作和模型,然后返回汽车的mpg。

models.py:

class Car(models.Model):
    year = models.IntegerField(default=0)
    make = models.CharField(max_length=60)
    model = models.CharField(max_length=60)
    mpg = models.IntegerField(default=0)


    def __str__(self):
        return ("{0} {1} {2}".format(self.year, self.make, self.model))
views.py :(现在,它只列出了每辆车,无法当场验证车辆)

def index(request):

    context_dic = {}
    car_list = Car.objects.order_by('make')
    car_list_model = Car.objects.order_by('model')
    context_dic['car_list'] = car_list
    context_dic['years'] = []
    context_dic['makes'] = []
    context_dic['models'] = []

    for year in range(1995, 2016):
        context_dic['years'].append(year)

    for make in car_list:
        if make.make not in context_dic['makes']:
            context_dic['makes'].append(make.make)
        else:
            continue

    for model in car_list_model:
        if model.model not in context_dic['models']:
            context_dic['models'].append(model.model)
        else:
            continue

    return render(request, 'ConverterApp/index.html', context_dic)

html :( x3代表品牌和型号)

<div id="specifics">
    <div class="dropdown" id="year-dropdown">
      <button class="btn btn-default dropdown-toggle" type="button"
      id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
        Year
    <span class="caret"></span>
  </button>
  <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
    {% for year in years %}
      <li><a href="#">{{ year }}</a></li>
    {% endfor %}
  </ul>
</div>

javascript :(现在只显示值,但无法与数据库进行验证)

  $('#calculate').on('click', function ()
  {
    $(this).siblings()[0].textContent = (
      document.getElementById("dropdownMenu1").textContent
      + " " + document.getElementById("dropdownMenu2").textContent
       + " " + document.getElementById("dropdownMenu3").textContent
       + " " + document.getElementById("specifics-gas").value
    )
  });
});

  //this part changes the year, make, model to what the user selects //from the list
  $('li').on('click', function () {
    $(this).parent().siblings()[0].innerHTML = this.innerHTML
    //console.log(this.textContent)
  });

3 个答案:

答案 0 :(得分:3)

假设您必须在下拉列表中填充所有品牌名称的静态列表,并且应该首先根据选择填充第二个下拉列表。

假设有两个简单的Django模型定义 Brands Showrooms。

<强> Views.py

class YourView(TemplateView):
    template_name = 'template.html'

    def get_context_data(self, **kwargs):
        brands = Brands.objects.all()
        context = super(YourView, self).get_context_data(**kwargs)
        context.update({'brands': brands})
        return context

def get_showrooms(request, **kwargs):
    brand = Brands.objects.get(id=kwargs['brand_id'])
    showroom_list = list(brand.showrooms.values('id', 'name'))

    return HttpResponse(simplejson.dumps(showroom_list), content_type="application/json"

<强> HTML

<label>Select Brand</label>
      <select id="brands" name="brands" class="form-control">
        <option value="">Select Brand</option>                    
        {% for brand in brands %}
          <option id="{{ brand.id }}" value="{{ brand.id }}">
                {{ brand.name }}
          </option>
        {% endfor %}
       </select>

<label>Select Showrroom</label>
    <div id="showroom_list">
      <select name="showrooms"  class="form-control">
      </select>
    </div

<强>的Ajax

$('select[name=brands]').change(function(){
    brand_id = $(this).val();
    request_url = '/sales/get_showrooms/' + brand_id + '/';
        $.ajax({
            url: request_url,
            success: function(data){
            $.each(data, function(index, text){
                $('select[name=showrooms]').append(
                $('<option></option>').val(index).html(text)
                );
              };
           });

您可以在request_url中进行RESTful调用。

您可以根据第二个选择进一步填充第三个下拉列表,依此类推。此外,您可以访问所选选项并执行更多操作。 chosen plugin可以帮助您优化下拉菜单。

答案 1 :(得分:1)

我不确定你对此感到困惑。你为什么要把每辆车都放进一个页面?当您构建一个普通的非Ajax页面时,您通过URL传递一些数据 - 例如数据库对象的slug或ID - 您在数据库中查询该特定对象,并通过HTML模板返回其数据。

完全相同的逻辑适用于Ajax,除了您可能不需要HTML模板;你可以返回JSON,JS很容易理解。

答案 2 :(得分:1)

我会选择REST服务,例如Django Rest Framework,然后使用jquery自动填充下拉列表。

如果安装REST服务很麻烦,你可以编写几个视图来获取json格式的数据......

例如,如果你在/ myapp / api中有一个REST服务,你可以像这样填充汽车:

$.ajax({
    url: "/myapp/api/cars?format=json",
    dataType: "json",
    success: function( data ) {
        var makes=[];  
        for (var i in data) {
            car = data[i];
            if (makes.indexOf(car.make) < 0){ // avoid duplicate brands
                makes.push(car.make);
                $('#makeselect').append($('<option>', {
                    value: car.id,
                    text: car.make
                }));
            }
        }
    }
});

然后,当&#34; make&#34;选择器已更改,并使用另一个REST调用(如/myapp/api/cars?make=Ford

)相应地填充模型和年份