当models中使用ManyToManyField进行多表关联的时候,需要使用字段的add()方法来增加关联关系的一条记录,让两个实例关联起来才能顺利保存关联关系
#models.py 问题分类question_category和类别使用了多对多关系(先不管是否合理)
#coding:utf-8
from django.db import models
# Create your models here.
class QuestionCategory(models.Model):
category_name = models.CharField('问题分类',max_length=50)
1