91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

content-type組件怎么在Django中使用

發布時間:2021-03-24 16:26:32 來源:億速云 閱讀:139 作者:Leah 欄目:開發技術

content-type組件怎么在Django中使用?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

django中的一個組件content-type可以幫助我們解決這樣的一個問題

在這里我先設計了3張表 學位表 普通課程 和價格策略表 大致的設計如下

content-type組件怎么在Django中使用

在上圖中我們可以看到價格策略表和其他的兩個表進行了關聯,可以根據表明

models.py

from django.db import models
from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation
from django.contrib.contenttypes.models import ContentType


class Course(models.Model):
  """
  普通課程
  """
  title = models.CharField(max_length=32)
  # 僅用于反向查找 不在數據庫中添加字段
  price_policy_list = GenericRelation("PricePolicy")

class DegreeCourse(models.Model):
  """
  學位課程
  """
  title = models.CharField(max_length=32)

  # 僅用于反向查找
  price_policy_list = GenericRelation("PricePolicy")


class PricePolicy(models.Model):
  """
  價格策略
  """
  price = models.IntegerField()
  period = models.IntegerField()

  # 關聯表
  content_type = models.ForeignKey(ContentType, verbose_name='關聯的表名稱') # 7,8 表名稱
  object_id = models.IntegerField(verbose_name='關聯的表中的數據行的ID')  #
  # 幫助你快速實現content_type操作 ,快速插入數據 不生成數據庫中的字段 
  content_object = GenericForeignKey('content_type', 'object_id')

進行插入數據的類視圖

from django.shortcuts import render,HttpResponse
from app01 import models
def test(request):

  # 1. 為學位課“Python全棧”添加一個價格策略:一個月 9.9
  # obj1 = models.DegreeCourse.objects.filter(title='Python全棧').first()
  # models.PricePolicy.objects.create(price=9.9, period=30, content_object=obj1)
  #
  # obj2 = models.DegreeCourse.objects.filter(title='Python全棧').first()
  # models.PricePolicy.objects.create(price=19.9, period=60, content_object=obj2)
  #
  # obj3 = models.DegreeCourse.objects.filter(title='Python全棧').first()
  # models.PricePolicy.objects.create(price=29.9, period=90, content_object=obj3)

  # 2. 為學位課“rest”添加一個價格策略:一個月 9.9
  # obj1 = models.Course.objects.filter(title='rest framework').first()
  # models.PricePolicy.objects.create(price=9.9, period=30, content_object=obj1)
  #
  # obj2 = models.Course.objects.filter(title='rest framework').first()
  # models.PricePolicy.objects.create(price=19.9, period=60, content_object=obj2)
  #
  # obj3 = models.Course.objects.filter(title='rest framework').first()
  # models.PricePolicy.objects.create(price=29.9, period=90, content_object=obj3)

  # 3. 根據課程ID獲取課程, 并獲取該課程的所有價格策略
  # course = models.Course.objects.filter(id=1).first()
  #
  # price_policys = course.price_policy_list.all()
  #
  # print(price_policys)


  return HttpResponse('...')

為其添加路由

from django.conf.urls import url
from django.contrib import admin
from app01 import views

urlpatterns = [
  url(r'^admin/', admin.site.urls),
  url(r'^test/', views.test),
]

我們自己進行插入數據可能會這樣寫

# 1. 為學位課“Python全棧”添加一個價格策略:一個月 9.9
"""
obj = DegreeCourse.objects.filter(title='Python全棧').first()
# obj.id
cobj = ContentType.objects.filter(model='course').first()
# cobj.id
PricePolicy.objects.create(price='9.9',period='30',content_type_id=cobj.id,object_id=obj.id)
"""
# obj = DegreeCourse.objects.filter(title='Python全棧').first()
# PricePolicy.objects.create(price='9.9',period='30',content_object=obj)

輸入以下的地址進行測試

http://127.0.0.1:8000/test

數據庫中的結果如下

content-type組件怎么在Django中使用

看完上述內容,你們掌握content-type組件怎么在Django中使用的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

北宁市| 军事| 呼伦贝尔市| 武强县| 黄梅县| 贡山| 云林县| 镇平县| 修武县| 叙永县| 峨眉山市| 钦州市| 博兴县| 邹平县| 霸州市| 开远市| 淮南市| 宜君县| 扶沟县| 乌苏市| 江永县| 神木县| 安国市| 武城县| 靖远县| 綦江县| 图片| 昌图县| 舞钢市| 四会市| 德钦县| 温州市| 句容市| 枞阳县| 武平县| 云和县| 赤城县| 南郑县| 岳池县| 崇州市| 宣城市|