内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

content-type組件怎么在Django中使用-創(chuàng)新互聯(lián)

content-type組件怎么在Django中使用?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

目前累計(jì)服務(wù)客戶(hù)成百上千家,積累了豐富的產(chǎn)品開(kāi)發(fā)及服務(wù)經(jīng)驗(yàn)。以網(wǎng)站設(shè)計(jì)水平和技術(shù)實(shí)力,樹(shù)立企業(yè)形象,為客戶(hù)提供成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站策劃、網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)絡(luò)營(yíng)銷(xiāo)、VI設(shè)計(jì)、網(wǎng)站改版、漏洞修補(bǔ)等服務(wù)。創(chuàng)新互聯(lián)建站始終以務(wù)實(shí)、誠(chéng)信為根本,不斷創(chuàng)新和提高建站品質(zhì),通過(guò)對(duì)領(lǐng)先技術(shù)的掌握、對(duì)創(chuàng)意設(shè)計(jì)的研究、對(duì)客戶(hù)形象的視覺(jué)傳遞、對(duì)應(yīng)用系統(tǒng)的結(jié)合,為客戶(hù)提供更好的一站式互聯(lián)網(wǎng)解決方案,攜手廣大客戶(hù),共同發(fā)展進(jìn)步。

django中的一個(gè)組件content-type可以幫助我們解決這樣的一個(gè)問(wèn)題

在這里我先設(shè)計(jì)了3張表 學(xué)位表 普通課程 和價(jià)格策略表 大致的設(shè)計(jì)如下

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

在上圖中我們可以看到價(jià)格策略表和其他的兩個(gè)表進(jìn)行了關(guān)聯(lián),可以根據(jù)表明

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)
  # 僅用于反向查找 不在數(shù)據(jù)庫(kù)中添加字段
  price_policy_list = GenericRelation("PricePolicy")

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

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


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

  # 關(guān)聯(lián)表
  content_type = models.ForeignKey(ContentType, verbose_name='關(guān)聯(lián)的表名稱(chēng)') # 7,8 表名稱(chēng)
  object_id = models.IntegerField(verbose_name='關(guān)聯(lián)的表中的數(shù)據(jù)行的ID')  #
  # 幫助你快速實(shí)現(xiàn)content_type操作 ,快速插入數(shù)據(jù) 不生成數(shù)據(jù)庫(kù)中的字段 
  content_object = GenericForeignKey('content_type', 'object_id')

進(jìn)行插入數(shù)據(jù)的類(lèi)視圖

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

  # 1. 為學(xué)位課“Python全?!碧砑右粋€(gè)價(jià)格策略:一個(gè)月 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. 為學(xué)位課“rest”添加一個(gè)價(jià)格策略:一個(gè)月 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. 根據(jù)課程ID獲取課程, 并獲取該課程的所有價(jià)格策略
  # 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),
]

我們自己進(jìn)行插入數(shù)據(jù)可能會(huì)這樣寫(xiě)

# 1. 為學(xué)位課“Python全?!碧砑右粋€(gè)價(jià)格策略:一個(gè)月 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)

輸入以下的地址進(jìn)行測(cè)試

http://127.0.0.1:8000/test

數(shù)據(jù)庫(kù)中的結(jié)果如下

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

看完上述內(nèi)容,你們掌握content-type組件怎么在Django中使用的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!

網(wǎng)站名稱(chēng):content-type組件怎么在Django中使用-創(chuàng)新互聯(lián)
分享網(wǎng)址:http://m.rwnh.cn/article14/iiede.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App開(kāi)發(fā)、網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)公司品牌網(wǎng)站建設(shè)、手機(jī)網(wǎng)站建設(shè)移動(dòng)網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站建設(shè)
拉孜县| 沙田区| 个旧市| 西林县| 洪湖市| 汪清县| 诏安县| 德安县| 左云县| 濮阳市| 鹿泉市| 鄂伦春自治旗| 永泰县| 鄢陵县| 沅江市| 玉树县| 临沂市| 那曲县| 额尔古纳市| 普兰店市| 翁源县| 安庆市| 多伦县| 石家庄市| 思南县| 子长县| 鲜城| 棋牌| 巨鹿县| 平定县| 临湘市| 革吉县| 海城市| 乌恰县| 黔西县| 固始县| 开化县| 凤凰县| 郴州市| 子长县| 咸丰县|