我有以下简单的看法。为什么会导致此错误?
The view auth_lifecycle.views.user_profile didn't return an HttpResponse object. It returned None instead.
"""Renders web pages for the user-authentication-lifecycle project."""
from django.shortcuts import render
from django.template import RequestContext
from django.contrib.auth import authenticate, login
def user_profile(request):
"""Displays information unique to the logged-in user."""
user = authenticate(username='superuserusername', password='sueruserpassword')
login(request, user)
render(request, 'auth_lifecycle/user_profile.html',
context_instance=RequestContext(request))
因为视图必须 返回 render
,而不仅仅是调用它。将最后一行更改为
return render(request, 'auth_lifecycle/user_profile.html',
context_instance=RequestContext(request))
我得到这个错误,而使用django 1.10.6: ValueError at /AgregarTienda视图chilegaleria.views.AgregarTienda_View没有返回HttpSolutions对象。它返回无。 这是我的看法 此外,当我添加类Meta: Model=DatosTiendas到我的forms.py文件我得到这个错误: C:\Chilegalerias 这是我
有人知道为什么我的代码没有在“if user not None:”行上运行吗? 回溯 1. 2. 内部服务器错误: /login/Traceback(最近一次调用最后一次):文件"C:\用户\hanya\AppData\本地\程序\Python\Python37\lib\site-包\django\core\处理程序\exception.py",第34行,在内部响应=get_response(请求
好的, 我试图使一个简单的mvcSpring启动应用程序,我有它在我的代码返回index.html当控制器接收到"/"的请求。 我不确定,但这不起作用。 SpringDataWebApplication。JAVA HealthCHeckController。JAVA 用户存储库。JAVA 指数html 指数html位于/templates目录中,如thymeleaf所示 pom.xml 用户实体。
我正在使用Spring boot来渲染页面。我也使用了叶子。但是我在从浏览器调用它时得到了下面提供的异常。 我已经编写了视图解析器类,当我使用为此。 和我在应用程序中提到的一样。yml也是。应用yml是 这是我的Controller类,负责渲染index.jspMainController.class
我有一个线程池为10的executor服务,我希望得到10条打印输出语句,它们之间的间隔为3秒,但我只收到一条打印输出语句。我传递了10作为参数,所以我希望运行10个线程。如何检索未来的10个对象? 我得到的输出是: 线程执行前 结果:123 ArrayList中的期货:123
问题内容: 我用如下猫鼬定义了一个模型: 然后创建了一个用户,可以通过mongo控制台完美地找到它,如下所示: 但是,当我尝试通过带有mongoose的node.js访问此对象时,要检索的对象不是此类文档,而是包装器: 这段代码… 从console.dir(doc)产生此输出… 因此,密码将不匹配,因为doc.password未定义。 为什么会这样呢? 问题答案: 这正是包裹猫鼬对象的猫鼬的目的。