我正在设计一个网站,其中包含事件的位置,作为存储和显示的信息的一部分。
该位置可以是大陆,国家,州/部门或城市。当显示一个事件时,我希望为该事件生成面包屑。
例如,如果活动在巴黎:
欧洲/法国/法兰西岛/巴黎
面包屑中的每个项目都是可点击的,并会显示该位置的事件列表。它不会为其子女区域带来活动。
我想使数据库设计与Django及其模型和管理功能兼容。
我也不想加载所有不会被使用的国家,地区和城市的位置表。我想在生成需要新位置的事件时将它们添加到数据库中。
我最初的想法是针对每种类型的位置的表格,然后在事件表中有四列可以为空的列。与事件关联的位置类型将由哪个位置列为NOT NULL确定。
dromedary.spec.ts
另一种选择是将位置存储为varchar,并将所有位置信息存储在一列
中Event:
name varchar
continent_id int NULL
country_id int NULL
region_id int NULL
city_id int NULL
Continent:
id int
name varchar
Country:
id int
name varchar
countinent_id int
Region:
id int
name varchar
country_id int
Country:
id int
name varchar
region_id int
非常感谢任何关于方法或可行性的想法。
答案 0 :(得分:0)
好吧,由于压倒性的反应。我自己做了:
models.py
class Event(TimeStampedModel):
title = models.CharField(max_length=100)
continent = models.ForeignKey(
'Continent',
on_delete=models.SET_NULL,
blank=True,
null=True,)
country = models.ForeignKey(
'Country',
on_delete=models.SET_NULL,
blank=True,
null=True,)
region = models.ForeignKey(
'Region',
on_delete=models.SET_NULL,
blank=True,
null=True,)
city = models.ForeignKey(
'City',
on_delete=models.SET_NULL,
blank=True,
null=True,)
class Continent(models.Model):
name = models.CharField(max_length=20)
abbr = models.CharField(max_length=2)
def __str__(self):
return self.name
class Country(models.Model):
name = models.CharField(max_length=40)
abbr = models.CharField(max_length=3)
continent = models.ForeignKey(
'Continent',
on_delete=models.CASCADE,
related_name="countries",
related_query_name="country"
)
def __str__(self):
return self.name
class Region(models.Model):
name = models.CharField(max_length=40)
country = models.ForeignKey(
'Country',
on_delete=models.CASCADE,
related_name="regions",
related_query_name="region"
)
def __str__(self):
return self.name
class City(models.Model):
name = models.CharField(max_length=40)
region = models.ForeignKey(
'Region',
on_delete=models.CASCADE,
related_name="cities",
related_query_name="city"
)
def __str__(self):
return self.name
上面的设置允许我逻辑地链接位置。它还允许我按任何地点类型搜索事件。