728x90
반응형
만들어놓은 hello_world.html 을 보면 정적이다. 그냥 워딩 딱 박혀있는게 끝이다.
{% extends 'base.html' %}
{% block content %}
<div style="height: 20rem; background-color: #38df81; border-radius: 1rem; margin: 2rem; ">
<h1>
testing
</h1>
</div>
{% endblock %}
이걸 db에서 내용을 받아 동적으로 변할 수 있게 models.py로 부터 시작한다.
1
models.py
from django.db import models
# Create your models here.
class HelloWorld(models.Model):
text = models.CharField(max_length=255, null=False)
2
python manage.py makemigrations
: 우리가 models.py에다 쓰는 내용을 db와 연동시킬 파이썬 파일로 만들어주는 작업을 한다.
python manage.py migrate
: 만든거 이제 db와 연동을 시켜준다.
728x90
반응형
'웹 프로그래밍' 카테고리의 다른 글
[pinterest clone (11)] POST 통신을 이용한 DB 데이터 저장 (0) | 2021.04.27 |
---|---|
[pinterest clone (10)] HTTP 프로토콜 GET, POST (0) | 2021.04.26 |
CSS에 대한 정리 (0) | 2021.04.26 |
[pinterest clone (8)] static 설정과 css분리 (0) | 2021.04.26 |
[pinterest clone (7)] 디자인 (0) | 2021.04.26 |