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

溫馨提示×

溫馨提示×

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

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

Django怎么編寫數據模型類

發布時間:2021-11-15 17:00:01 來源:億速云 閱讀:183 作者:iii 欄目:大數據

本篇內容介紹了“Django怎么編寫數據模型類”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

設計數據庫和表結構是做網站的基礎。在Django中,不需要通過SQL語句直接跟數據庫打交道,而是完全用Python的類來創建數據模型,之后交給Django完成創建數據庫的操作。

數據模型類

數據模型類需要在 應用目錄 下的 models.py 文件中編寫

編寫數據模型

  • 下面的代碼演示了在 models.py 中定義了一個博客文章的類

from django.db import models
from django.utils import timezone
from django.contrib.auth.models import User


# Create your models here.
class BlogArticles(models.Model):  # Django中的數據模型類都繼承自 django.db.models.Model類
    # 字段 title 的屬性為 CharField 類型,并且參數長度為 300
    title = models.CharField(max_length=300)
    """
    字段 author 使用 ForeignKey 規定了博客文章和用戶之間的關系:一個用戶對應多篇文章
    models.CASCADE 表示級聯刪除
    related_name="blog_posts" 表示允許User類的實例以 "blog_posts" 屬性反向查詢到BlogArticles類的實例
    """
    author = models.ForeignKey(User, on_delete=models.CASCADE, related_name="blog_posts")
    body = models.TextField()
    publish = models.DateTimeField(default=timezone.now)

    """
    ordering = ("-publish",) 規定BlogArticles類的實例按 publish 字段值倒序顯示
    """
    class Meta:
        ordering = ("-publish",)

    """
    重寫父類的方法,使得當使用 str()函數轉換該類的實例為字符串時,返回 title 屬性的值
    """
    def __str__(self):
        return self.title

根據數據模型建立數據庫表

  1. 創建數據庫表文件

E:\PycharmProjects\demosite>python manage.py makemigrations
Migrations for 'blog':
  blog\migrations\0002_auto_20190720_1919.py
    - Alter field publish on blogarticles
  1. 上面執行結果的提示信息中,告訴我們在 blog/migrations 目錄中創建了一個 BlogArticles模型,模型編號為 0001。可以輸入以下命令查看相對應的SQL語句:

E:\PycharmProjects\demosite>python manage.py sqlmigrate blog 0001
System check identified some issues:

WARNINGS:
blog.BlogArticles.publish: (fields.W161) Fixed default value provided.
        HINT: It seems you set a fixed date / time / datetime value as default for this field. This may not be what you want. If you want to have the current date as default, use `django.utils.timezone.now`
BEGIN;
--
-- Create model BlogArticles
--
CREATE TABLE "blog_blogarticles" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "title" varchar(300) NOT NULL, "body" text NOT NULL, "publish" datetime NOT NULL, "author_id" integer NOT NULL REFERENCES "auth_user" ("id") DEFERRABLE INITIALLY DEFERRED);
CREATE INDEX "blog_blogarticles_author_id_ed798e23" ON "blog_blogarticles" ("author_id");
COMMIT;

在數據庫中表名格式為:小寫的應用名稱_小寫的類名稱

  1. 創建數據庫

(demosite) E:\PycharmProjects\demosite>python manage.py migrate
System check identified some issues:

WARNINGS:
blog.BlogArticles.publish: (fields.W161) Fixed default value provided.
        HINT: It seems you set a fixed date / time / datetime value as default for this field. This may not be what you want. If you want to have the current date as default, use `django.utils.timezone.now`
Operations to perform:
  Apply all migrations: admin, auth, blog, contenttypes, sessions
Running migrations:
  Applying contenttypes.0001_initial... OK
  Applying auth.0001_initial... OK
  Applying admin.0001_initial... OK
  Applying admin.0002_logentry_remove_auto_add... OK
  Applying admin.0003_logentry_add_action_flag_choices... OK
  Applying contenttypes.0002_remove_content_type_name... OK
  Applying auth.0002_alter_permission_name_max_length... OK
  Applying auth.0003_alter_user_email_max_length... OK
  Applying auth.0004_alter_user_username_opts... OK
  Applying auth.0005_alter_user_last_login_null... OK
  Applying auth.0006_require_contenttypes_0002... OK
  Applying auth.0007_alter_validators_add_error_messages... OK
  Applying auth.0008_alter_user_username_max_length... OK
  Applying auth.0009_alter_user_last_name_max_length... OK
  Applying auth.0010_alter_group_name_max_length... OK
  Applying auth.0011_update_proxy_permissions... OK
  Applying blog.0001_initial... OK
  Applying sessions.0001_initial... OK

“Django怎么編寫數據模型類”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

汤原县| 通城县| 义乌市| 石泉县| 胶南市| 峨边| 东阿县| 宜宾市| 永泰县| 杭锦后旗| 华亭县| 尼玛县| 甘泉县| 名山县| 祁东县| 北安市| 柘荣县| 久治县| 安远县| 江山市| 红河县| 文成县| 中卫市| 姜堰市| 东乡族自治县| 辛集市| 手游| 喀什市| 泸州市| 南岸区| 霞浦县| 大城县| 墨竹工卡县| 麻江县| 灵宝市| 张北县| 景谷| 龙州县| 扬中市| 民乐县| 油尖旺区|