今天给各位分享django的值怎么返回页面的知识,其中也会对django返回文件进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!
本文目录一览:
1、django如何在用户登录后返回到原来来页面,并保持登陆状态2、django 怎么将查询到的数据以json形式返回3、Django写的LoginView,登录成功后无法跳转回原页面,求助4、django怎样返回一个页面django如何在用户登录后返回到原来来页面,并保持登陆状态
任何页面的头部显示登录状态的部分应该是一个block,其他页面继承此block,这个block里面写上初始化js,从后台获取登录状态
django 怎么将查询到的数据以json形式返回
在firefox中按F12,进入开发者工具,然后选到网络标签,再打开需要返回JSON的页面,就可以看到相应的数据,如下图所示: 1、点重新载入 2、按类型排序,选JSON类型数据 3、点相应的连接,在右侧就会显示json数据
Django写的LoginView,登录成功后无法跳转回原页面,求助
You do not need to make an extra view for this, the functionality is already built in.
First each page with a login link needs to know the current path, and the easiest way is to add the request context preprosessor to settings.py (the 4 first are default), then the request object will be available in each request:
settings.py:
TEMPLATE_CONTEXT_PROCESSORS = (
"django.core.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media",
"django.core.context_processors.request",
)
Then add in the template you want the Login link:
base.html:
a href="{% url django.contrib.auth.views.login %}?next={{request.path}}"Login/a
This will add a GET argument to the login page that points back to the current page.
The login template can then be as simple as this:
registration/login.html:
{% block content %}
form method="post" action=""
{{form.as_p}}
input type="submit" value="Login"
/form
{% endblock %}
django怎样返回一个页面
定义一个页面模版hello.html
定义好url
定义一个view, 最后 render(request, 'hello.html', locals())
访问上面定义的url
关于django的值怎么返回页面和django返回文件的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。