如何修复错误 AttributeError: 'Country' object has no attribute 'City_set' 。在 django

Posted

技术标签:

【中文标题】如何修复错误 AttributeError: \'Country\' object has no attribute \'City_set\' 。在 django【英文标题】:how to fix the error AttributeError: 'Country' object has no attribute 'City_set' . in django如何修复错误 AttributeError: 'Country' object has no attribute 'City_set' 。在 django 【发布时间】:2019-07-19 16:44:58 【问题描述】:

我有 3 个相关的下拉列表乡村城市道路。

从数据库中预先填充国家/地区,并根据第一个的选择,第二个将显示相关城市。

问题是一旦用户从第一个下拉列表中选择,系统就会显示以下错误:

all_cities = selected_country.City_set.all() 属性错误: “Country”对象没有“City_set”属性

我不知道如何解决这个错误。

models.py

class Country(models.Model):
    name = models.CharField(max_length=100)

    def __str__(self):
        return str(self.name)

class City(models.Model):
    name = models.CharField(max_length=100)
    country = models.ForeignKey(Country,on_delete=models.CASCADE)



    def __str__(self):
        # return'id : 0 MouhafazatID :1 Name :2'.format(self.id,self.MouhafazatID,self.name)
        return str(self.name)

class Road(models.Model):
    Vil = models.CharField(max_length=100)
    city= models.ForeignKey(City,on_delete = models.SET_NULL, null=True)
    country= models.ForeignKey(Country,on_delete = models.SET_NULL,null=True)

    def __str__(self):
        return str(self.Vil)

home2.html

<html>
    <head>
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.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 ;
                 alert(country_name);
                 $.ajax(
                     type:"GET",
                     url:'/getdetails',
                     // data:JSON.stringify(data),
                     data:data,
                     success: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>       

        <select name ="selectroads" id="selectroads">


        </select>



    </body>
</html>

views.py

from django.shortcuts import render,redirect

from django.http import HttpResponse,JsonResponse
from testapp.models import *

import json as simplejson



def home2(request):
    countries = Country.objects.all()
    print("countries =", countries)
    return render(request, 'home2.html','countries': countries)



def getdetails(request):
    if request.method == 'GET' and request.is_ajax():
        country_name = request.GET.get('cnt', None) 
        print ("ajax country_name ", country_name)

        result_set = []
        all_cities = []

        answer = str(country_name[1:-1])
        print('answer = ' ,answer)
        selected_country = Country.objects.get(name=answer)
        print ("selected country name ", selected_country)

        all_cities = selected_country.City_set.all()
        print("cities are: " , all_cities)
        for city in all_cities:
            print ("city name", city.name)
            result_set.append('name': city.name)

        return HttpResponse(simplejson.dumps(result_set),content_type='application/json')
        # return JsonResponse(result_set,status = 200)

    else:
        return redirect('/')

如您所见,我以 json 格式传递数据。

但是views.py中的函数会一直执行到这一行

print ("selected country name ", selected_country)

具有正确的值。

然后它会显示错误。

【问题讨论】:

【参考方案1】:

访问反向外键关系时,在提及相关模型时始终使用小写字母。这是

all_cities = selected_country.city_set.all() 

为了更好的可读性,在声明外键字段时使用related_name 属性。示例:

class City(models.Model):
    name = models.CharField(max_length=100)
    country = models.ForeignKey(Country, on_delete=models.CASCADE, related_name='cities')

通过添加上述related_name属性,您可以访问城市如下:

all_cities = selected_country.cities.all()

【讨论】:

【参考方案2】:

您需要将City_set 替换为city_set,因为使用的是小写字母。

【讨论】:

以上是关于如何修复错误 AttributeError: 'Country' object has no attribute 'City_set' 。在 django的主要内容,如果未能解决你的问题,请参考以下文章

如何修复 AttributeError:“列表”对象没有属性“编码”

如何修复 AttributeError:“系列”对象没有“查找”属性?

使用 grpc 和 cloud-datastore 时如何修复 App Engine Flex 中的 AttributeError?

AttributeError:模块'win32ctypes.pywin32.win32api'没有属性'错误'

如何修复 AttributeError:模块 'tensorflow' 没有属性 'keras'?

如何修复AttributeError:模块'numpy'没有属性'square'[关闭]