728x90
class Blog(models.Model):
title = models.CharField(max_length = 200)
pub_date = models.DateTimeField('data published')
body = models.TextField()
objects = models.Manager()
def __str__(self):
return self.title
https://motokoluv.github.io/django/django-5
vscode의 버그 찾으면 나옴
'Develop > Resolve errors' 카테고리의 다른 글
부트스트랩 dropdown 버튼을 클릭해도 아이템이 안나온다면? / bootstrap (0) | 2019.02.03 |
---|---|
[pylint] Value 'self.body' is unsubscriptable [E1136] (0) | 2019.01.30 |
java.lang.NumberFormatException: For input string: "" (0) | 2019.01.25 |
[Git] git add . 시 CRLF 오류날 때 (0) | 2019.01.16 |
[Android/Java] Checkbox 선언 시 주의사항! (0) | 2019.01.06 |