def current_datetime(request): now = datetime.datetime.now() t = get_template('current_datetime.html') html = t.render(Context({'current_date': now})) return HttpResponse(html)
在Django 1.11.11版本中运行会出现“TypeError context must be a dict rather than Context”的错误信息。