在我的Django应用程序的视图中,我有一个注册方法,我正在尝试使用模板呈现输出。该程序编译良好,服务器运行没有任何问题,当我试图从浏览器访问该注册表时,它正在抛出异常声明的模块'对象没有属性'快捷方式' 。我可以知道我在这里做错了什么。
from django.http import HttpResponse
from commons import Commons
from djangolearn.models import UserExtForm
from djangolearn.models import UserForm
import django
def hello(request):
return HttpResponse("hello world")
def register(request):
uform = UserForm(prefix='user')
uxtform = UserExtForm(prefix='userprofile')
cont = dict(userform=uform,userprofileform=uxtform)
return django.shortcuts.render(request, 'register.html', cont)
来自settings.py的模板设置
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': ['D:/projects/eclipse/djangolearn/djangolearn/templates',],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
答案 0 :(得分:2)
您需要显式导入渲染或快捷方式,因为它是辅助函数,而django.shortcuts是包。
from django import shortcuts
from django.shortcuts import render