溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python學(xué)習(xí)筆記之Django創(chuàng)建第一個(gè)數(shù)據(jù)庫(kù)模型的方法

發(fā)布時(shí)間:2020-10-01 12:00:33 來源:腳本之家 閱讀:184 作者:金陽 欄目:開發(fā)技術(shù)

Django里面集成了SQLite的數(shù)據(jù)庫(kù),對(duì)于初期研究來說,可以用這個(gè)學(xué)習(xí)。

第一步,創(chuàng)建數(shù)據(jù)庫(kù)就涉及到建表等一系列的工作,在此之前,要先在cmd執(zhí)行一個(gè)命令:

python manage.py migrate

這個(gè)命令就看成一個(gè)打包安裝的命令,它會(huì)根據(jù)mysite/settings.py的配置安裝一系列必要的數(shù)據(jù)庫(kù)表

第二步,我們要建立一個(gè)Model層,修改demo/model.py:

from django.db import models
classQuestion(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
classChoice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)

這個(gè)Model的內(nèi)容包括創(chuàng)建表(對(duì)象)、確定變量(字段)的類型,以及外鍵方面的信息

第三步,要激活Model,那么現(xiàn)在helloworld/setting.py中修改:

INSTALLED_APPS =[
'demo.apps.DemoConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]

主要是加了第一行的內(nèi)容,這個(gè)在demo/apps下有的。目的是讓Django知道有demo這個(gè)app。

然后就在cmd下面運(yùn)行:

python manage.py makemigrations demo

可以看到在demo/migrations/0001_initial.py下面生成了很多代碼

繼續(xù)run這段代碼,就完成了建表工作:

python manage.py sqlmigrate demo 0001

再跑一下migrate命令,把這些model創(chuàng)建到數(shù)據(jù)庫(kù)表中

python manage.py migrate

第四步,也是比較好玩的了,就是要進(jìn)入到python django的shell中,執(zhí)行這個(gè)命令:

python manage.py shell

Python學(xué)習(xí)筆記之Django創(chuàng)建第一個(gè)數(shù)據(jù)庫(kù)模型的方法

在這個(gè)里面,就可以通過命令行操作數(shù)據(jù)庫(kù)了

先引入剛才創(chuàng)建好的model:

from demo.models importQuestion,Choice

這個(gè)命令,打印出Question所有的對(duì)象:

Question.objects.all()

然后創(chuàng)建一個(gè)Question的對(duì)象(或數(shù)據(jù)):

from django.utils import timezone
q =Question(question_text="What's new?", pub_date=timezone.now())
q.save()
q.id
q.question_text
q.pub_date
q.question_text = "What's up?"
q.save()
Question.objects.all()

第五步,然后polls/models.py中添加以下代碼:

from django.db import models
from django.utils.encoding import python_2_unicode_compatible
@python_2_unicode_compatible# only if you need to support Python 2
classQuestion(models.Model):
# ...
def __str__(self):
return self.question_text
@python_2_unicode_compatible# only if you need to support Python 2
classChoice(models.Model):
# ...
def __str__(self):
return self.choice_text
import datetime
from django.db import models
from django.utils import timezone
classQuestion(models.Model):
# ...
def was_published_recently(self):
return self.pub_date >= timezone.now()- datetime.timedelta(days=1)

在這里__str__()是一個(gè)非常重要的方法,大概可以看成java里pojo對(duì)象的一個(gè)toString()方法

接下來,就可以在數(shù)據(jù)庫(kù)中進(jìn)行很多操作,在shell中輸入以下的代碼,就可以執(zhí)行對(duì)數(shù)據(jù)庫(kù)的增刪查改:

from polls.models importQuestion,Choice
Question.objects.all()
Question.objects.filter(id=1)
Question.objects.filter(question_text__startswith='What')
from django.utils import timezone
current_year = timezone.now().year
Question.objects.get(pub_date__year=current_year)
Question.objects.get(id=2)
Question.objects.get(pk=1)
q =Question.objects.get(pk=1)
q.was_published_recently()
q =Question.objects.get(pk=1)
q.choice_set.all()
q.choice_set.create(choice_text='Not much', votes=0)
q.choice_set.create(choice_text='The sky', votes=0)
c = q.choice_set.create(choice_text='Just hacking again', votes=0)
c.question
q.choice_set.all()
q.choice_set.count()
Choice.objects.filter(question__pub_date__year=current_year)
c = q.choice_set.filter(choice_text__startswith='Just hacking')
c.delete()

操作django Admin

Django的管理端可以管理站點(diǎn)、管理賬戶權(quán)限等等。

在cmd運(yùn)行以下的腳本創(chuàng)建賬戶:

python manage.py createsuperuser
Username: admin
Email address: admin@example.com
Password:**********
Password(again):*********
Superuser created successfully.

啟動(dòng)server:

python manage.py runserver 8081

訪問鏈接地址:

http://127.0.0.1:8081/admin/

登錄界面:

Python學(xué)習(xí)筆記之Django創(chuàng)建第一個(gè)數(shù)據(jù)庫(kù)模型的方法

管理界面:

Python學(xué)習(xí)筆記之Django創(chuàng)建第一個(gè)數(shù)據(jù)庫(kù)模型的方法

在demo/admin.py中添加代碼注冊(cè)對(duì)象:

from django.contrib import admin
from.models importQuestion
admin.site.register(Question)

刷新后即增加這個(gè)對(duì)象:

Python學(xué)習(xí)筆記之Django創(chuàng)建第一個(gè)數(shù)據(jù)庫(kù)模型的方法

點(diǎn)擊Questions進(jìn)去:

Python學(xué)習(xí)筆記之Django創(chuàng)建第一個(gè)數(shù)據(jù)庫(kù)模型的方法

這樣,就可以在圖形化的界面中執(zhí)行增刪查改了。

以上這篇Python學(xué)習(xí)筆記之Django創(chuàng)建第一個(gè)數(shù)據(jù)庫(kù)模型的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI