当我检查“ datetime.today().date()”时,我views.py得到了昨天的日期。
但是当我使用“ date”命令从 linux 系统检查日期时,我得到了今天的日期。我认为 Django 没有更新当前日期。我必须在视图中获取当前日期以进行一些比较,还要打印到视图中。
我正在使用 Python 2.7 和 Django 1.9。
def assistant_page(request, assistant=None):
notes = AssistantNotes.objects.filter(notedate=datetime.today().date()).order_by("time")
file_write(datetime.today().date())
if request.method == 'GET':
return render(request, "assistant_page.html", {'generalnotes': notes})
精慕HU
相关分类