亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Django中使用ManyToManyField save方法實現多表關聯

發布時間:2021-03-24 15:56:55 來源:億速云 閱讀:138 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關如何在Django中使用ManyToManyField save方法實現多表關聯,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

當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)

 def __unicode__(self):
 return self.category_name


class Question(models.Model):
 question_category = models.ManyToManyField(QuestionCategory,verbose_name="歸屬分類")
 question_title = models.CharField('標題', max_length=50)
 question_author = models.ForeignKey('auth.User', blank=True, null=True,verbose_name='作者')
 question_keywords = models.CharField('關鍵詞',max_length=20)
 question_date = models.DateTimeField('date published')
 question_text = models.CharField('正文內容', max_length=200)

 def __unicode__(self):
 return self.question_title
#QuestionCategory.objects.get生成一個類別實例
#request.POST從前端獲取表單提交的數據后,湊到Question里面形成一個問題實例
#先把問題實例存好,再在問題實例的多對多關聯字段question_category上添加關聯對象joe這個類別實例,關聯好之后再save第二遍,查看數據庫里面關聯關系就存好了
def ask_question(request):

 question_category_name = request.POST['radio']
 question_title = request.POST['question_title']
 question_keywords = request.POST['question_keywords']
 question_text = request.POST['question_content']
 question_date = datetime.datetime.now()
 question_author = request.user
 joe = QuestionCategory.objects.get(category_name=question_category_name)
 print joe
 qqqq = Question(question_title=question_title,question_keywords=question_keywords,question_date=question_date,question_text=question_text,question_author=question_author)
 qqqq.save()
 qqqq.question_category.add(joe)
 qqqq.save()

 return redirect('pythonnav:index')

關于如何在Django中使用ManyToManyField save方法實現多表關聯就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

富裕县| 西城区| 海盐县| 云安县| 敖汉旗| 图们市| 化州市| 云霄县| 涟水县| 萝北县| 叶城县| 万州区| 吴江市| 镇坪县| 东乌珠穆沁旗| 措勤县| 天门市| 通辽市| 平南县| 禄劝| 德兴市| 镇康县| 阳曲县| 新郑市| 聂拉木县| 台东市| 故城县| 上饶县| 驻马店市| 万山特区| 琼结县| 盐津县| 洛宁县| 诸城市| 交城县| 邮箱| 成都市| 宁远县| 灵宝市| 武夷山市| 泊头市|