Django DB Model
Django shell
(mysite) python manage.py shell
Create Model
# importer Question Model(class)
>>> from pybo.models import Question, Answer
# Créer Model instance
>>> from django.utils import timezone
>>> q = Question(subject='Qu\'est-ce que Pybo?', content='Je voudrais savoir Pybo', create_date=timezone.now())
# Sauvegarder
>>> q.save()
Django Queries Méthode
migration & makemigrations
-
migration :
créer
un table -
makemigrations :
détecter
s'il y a un changement d'un model - création d'une table ou modification d'une property de ce model.
=> si oui, il crée une fiche dans la répertoiremigrations
, qui va appeler query via la méthode de Django.Donc, makemigrations => migration après avoir changé d'un model.
# migration
python manage.py migration
# makemigrations
python manage.py makemigrations
.filter() & .get()
djangoShell
from pybo.models import Question
>>>Question.objects.filter(id=1)
<QuerySet [<Question: Qu'est-ce que Pybo?>]>
>>>Question.objects.get(id=1)
<Question: Qu'est-ce que Pybo?>
.filter : return
queryset
- plusieurs
.get: returnquery
- un seul
Author And Source
이 문제에 관하여(Django DB Model), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jeanoza/Django-DB-Model저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)