我在mysql中有一个数据库,我正在设置一个django项目。我有一些具有多对多关系的实体,它们通过关联表处理。使用django,我已经明白我可以使用ManyToMany实体来实现多对多关系但是当关联表除了多对多关系之外还包含更多信息时我该怎么办? 请参阅下面的示例。
CREATE TABLE `products` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` char(150) DEFAULT NULL ...)
CREATE TABLE `pictures` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`filename` char(100) NOT NULL ... )
CREATE TABLE `products_pictures` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`fk_products_id` int(11) unsigned NOT NULL,
`fk_pictures_id` int(11) unsigned NOT NULL,
`priority` tinyint(4) unsigned DEFAULT NULL,
`relation` varchar(25) DEFAULT 'same product family' ... )
答案 0 :(得分:3)
您可以使用through选项,例如
class Products(models.Model):
name = models.CharField(max_length=128)
pictures = models.ManyToManyField(
Pictures,
through='ProductsPictures',
)
class ProductsPictures(models.Model):
product = models.ForeignKey(Products, on_delete=models.CASCADE)
picture = models.ForeignKey(Pictures, on_delete=models.CASCADE)
description = models.CharField(max_length=128)