码迷,mamicode.com
首页 > 其他好文 > 详细

AttributeError at /home/home/ Exception Type: AttributeError at /home/home/

时间:2015-06-03 00:50:36      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:

"错误提示信息":

Environment:

Request Method: GET Request URL: http://localhost:8000/home/home/

Django Version: 1.7.5 Python Version: 2.7.0 Installed Applications: (‘django.contrib.admin‘,  ‘django.contrib.auth‘,  ‘django.contrib.contenttypes‘,  ‘django.contrib.sessions‘,  ‘django.contrib.messages‘,  ‘django.contrib.staticfiles‘,  ‘home‘) Installed Middleware: (‘django.contrib.sessions.middleware.SessionMiddleware‘,  ‘django.middleware.common.CommonMiddleware‘,  ‘django.middleware.csrf.CsrfViewMiddleware‘,  ‘django.contrib.auth.middleware.AuthenticationMiddleware‘,  ‘django.contrib.auth.middleware.SessionAuthenticationMiddleware‘,  ‘django.contrib.messages.middleware.MessageMiddleware‘,  ‘django.middleware.clickjacking.XFrameOptionsMiddleware‘)

Traceback:

File "D:\Python27\lib\site-packages\django-1.7.5-py2.7.egg\django\core\handlers\base.py" in get_response

  111.                     response = wrapped_callback(request, *callback_args, **callback_kwargs) File "D:\Pythonweb\testweb\laji\home\views.py" in home

  5.     return render("templates/home.html", {}) File "D:\Python27\lib\site-packages\django-1.7.5-py2.7.egg\django\shortcuts.py" in render

  46.         context_instance = RequestContext(request, current_app=current_app) File "D:\Python27\lib\site-packages\django-1.7.5-py2.7.egg\django\template\context.py" in __init__

  209.             updates.update(processor(request)) File "D:\Python27\lib\site-packages\django-1.7.5-py2.7.egg\django\core\context_processors.py" in debug

  40.     if settings.DEBUG and request.META.get(‘REMOTE_ADDR‘) in settings.INTERNAL_IPS:

Exception Type: AttributeError at /home/home/

Exception Value: ‘str‘ object has no attribute ‘META‘

 

《------------------------------错误原因-------------------------》

views.py 中的返回值不正确

def home(request):

    return render("templates/home.html", {})

换成

def home(request):
    #return render("templates/home.html", {})
    return render_to_response("home.html", {‘song‘: ‘Take me to your heart!‘})

AttributeError at /home/home/ Exception Type: AttributeError at /home/home/

标签:

原文地址:http://www.cnblogs.com/pyfreshman/p/4548030.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!