The view booktest.views.index didn't return an HttpResponse object.

出错原因:粗心忘记写return

错误代码:

    # 1.加载模板
    temp = loader.get_template('booktest\index.html')
    # 2.定义上下文:给模板传数据
    context = {}
    # 3.渲染数据 产生标准的html文件
    res_html = temp.render(context)
    # 4.返回给浏览器
    HttpResponse(res_html)

正确代码:

    # 1.加载模板
    temp = loader.get_template('booktest\index.html')
    # 2.定义上下文:给模板传数据
    context = {}
    # 3.渲染数据 产生标准的html文件
    res_html = temp.render(context)
    # 4.返回给浏览器
    return HttpResponse(res_html)

 

你可能感兴趣的:(The view booktest.views.index didn't return an HttpResponse object.)