장고에서 모델을 가지고 데이터베이스와 통신하면서 DB의 내용을 자세히 알지 않아도 되는 환경 제공
hello_world.html은 정적인 코드
내부의 내용을 원하는대로 바꿀 수 있게 동적으로 DB와 연동시키기 - models.py
from django.db import models
# Create your models here.
class HelloWorld(models.Model):
text = models.CharField(max_length=255, null=False)
Python
복사