블로그 이미지
흰색앵초

calendar

1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30

Notice

'장고'에 해당되는 글 1

  1. 2013.02.26 DateTimeField 자동으로 현재서버 시간 넣기
2013. 2. 26. 19:14 프로그래밍/장고


DateTimeField에 서버의 시간을 넣고 싶을 때가 있다 그럴 때는 models.py에서 아래와 같이 넣어주면 된다.

date_modified = models.DateTimeField(auto_now=True)

혹은 다른 방법도 존재한다.


views.py 부분에서

from datetime import datetime
obj.date_modified = datetime.now()

로 처리해서 사용하면 된다.


출처:http://stackoverflow.com/questions/7465796/django-set-datetimefield-to-servers-current-time

posted by 흰색앵초
prev 1 next