점프 투 장고 60페이지 질문
(mysite) c:\projects\mysite>python manage.py shell
Python 3.10.1 (tags/v3.10.1:2cd268a, Dec 6 2021, 19:10:37) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
from pybo.models import Question, Answer
from django.utils import timezone
q = Question(subject='pybo가 무엇인가요?', content='pybo에 대해서 알고 싶습니다.', create_date=timezone.now( ))
Traceback (most recent call last):
File "", line 1, in
File "C:\venvs\mysite\lib\site-packages\django\db\models\base.py", line 501, in init
raise TypeError("%s() got an unexpected keyword argument '%s'" % (cls.name, kwarg))
TypeError: Question() got an unexpected keyword argument 'create_date'
TypError가 뭘 의미하는지 모르겠습니다..
mmmnm 님 558
2022년 10월 6일 3:15 오후