在 Django 中创建 url 的正确方法

Right way to create urls in Django

在 Django 中,我有我的应用程序,我在其中放置有关国家和这些国家/地区城市的信息。这是我的 model.py 文件:

class Country(models.Model):
        class Meta:
                verbose_name_plural = u'Countries'

        name = models.CharField(max_length=50)
        slug = models.CharField(max_length=255)
        description = models.TextField(max_length=10000, blank=True)

        def __unicode__(self):
                return self.name

class City(models.Model):
        class Meta:
                verbose_name_plural = u'Cities'

        name = models.CharField(u'city', max_length=200)
        slug = models.CharField(max_length=255, blank=True)
        description = models.TextField(max_length=10000, blank=True)
        country = models.ForeignKey('Country', blank=True, null=True)

        def __unicode__(self):
                return self.name

我有我的国家的详细视图,在这个视图中有这个国家的城市列表(views.py):

def CountryDetail(request, slug):
        country = get_object_or_404(Country, slug=slug)
        list_cities = City.objects.filter(country=country)
        return render(request, 'country/country.html', {'country':country, 'list_cities':list_cities})

这是我的 urls.py:

url(r'^(?P<slug>[-_\w]+)/$', views.CountryDetail, name='country'),

我想创建一个 url 个城市,其中包含一个国家和一个城市,例如 domain.com/spain/barcelona/

所以我创建了城市的详细视图,它看起来像这样:

def CityDetail(request, resortslug):
        country = Country.objects.get(slug=countryslug)
        city = get_object_or_404(City, country=country, slug=cityslug)
        return render(request, 'country/city.html', {'country':country, 'city':city})

这是我的 urls.py 城市详细信息:

url(r'^(?P<countryslug>[-_\w]+)/(?P<cityslug>[-_\w]+)$', views.CityDetail, name='resort'),

这就是我的 html 国家/地区文件详细信息 link 到城市的样子:

<h1>{{country.name}}</h1>
<p>{{country.description}}</p>
<h2>Cities</h2>
{% for city in list_cities %}
   <a href="/{{country.slug}}/{{city.slug}}">
      <p>{{city.name}}</p>
   </a>
{% endfor %}

但是当我点击城市url的link时,出现404错误

Page not found (404)
Request Method: GET
Request URL:    http://domain.com/spain/barcelona
Using the URLconf defined in myproject.urls, Django tried these URL patterns, in this order:
The current URL, spain/barcelona, didn't match any of these.

这是我的 url.py 来自我的项目

urlpatterns = [
    url(r'^admin/', include(admin.site.urls)),
    url(r'^country/', include('country.urls')),

请帮我理解为什么会这样,谢谢。

由于您的项目在 country/ 前缀下包含您应用的 URL,因此城市页面可用 country/spain/barcelonahttp://domain.com/country/spain/barcelona