脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - django views重定向到带参数的url

django views重定向到带参数的url

2021-09-22 00:24shance-丁多斌 Python

这篇文章主要介绍了django views重定向到带参数的url,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

当一个函数进行完成后需要重定向到一个带参数的url

URL

?
1
path('peopleapply/<int:jobid>/',second_views.peopleapply,name='peopleapply'),

函数

?
1
2
def peopleapply(request,jobid):

调用

?
1
return redirect('peopleapply',jobid = people.jbnum_id)

peopleapply 为函数再url中的name

jobid 为需要的参数名称

补充:DJANGO中多种重定向方法使用

本文主要讲解使用HttpResponseRedirect、redirect、reverse以及配置文件中配置URL等重定向方法

本文使用了Django1.8.2

使用场景,例如在表单一中提交数据后,需要返回到另一个指定的页面即可使用重定向方法

一、 使用HttpResponseRedirect

fuhao The first argument to the constructor is required – the path to redirect to. This can be a fully qualified URL or an absolute path with no domain。”参数可以是绝对路径跟相对路径”

?
1
2
3
4
5
6
7
from django.http import HttpResponseRedirect
@login_required
def update_time(request):
 #表单处理OR逻辑处理
 return HttpResponseRedirect('/') #跳转到主界面
#如果需要传参数
return HttpResponseRedirect('/commons/index/?message=error')

二 redirect和reverse

?
1
2
3
4
5
6
7
from django.core.urlresolvers import reverse
from django.shortcuts import redirect
#https://docs.djangoproject.com/en/1.8.2/topics/http/shortcuts/
@login_required
def update_time(request):
 #进行要处理的逻辑
 return redirect(reverse('test.views.invoice_return_index', args=[])) #跳转到index界面

redirect 类似HttpResponseRedirect的用法,也可以使用 字符串的url格式 /..index/?a=add reverse 可以直接用views函数来指定重定向的处理函数,args是url匹配的值。

三、 其他

?
1
2
3
4
5
6
7
#其他的也可以直接在url中配置
from django.views.generic.simple import redirect_to
在url中添加 (r'^test/$', redirect_to, {'url': '/author/'}),
#我们甚至可以使用session的方法传值
request.session['error_message'] = 'test'
redirect('%s?error_message=test' % reverse('page_index'))
#这些方式类似于刷新,客户端重新指定url。

四、

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#重定向,如果需要携带参数,那么能不能直接调用views中 url对应的方法来实现呢,默认指定一个参数。
#例如view中有个方法baseinfo_account, 然后另一个url(对应view方法为blance_account)要重定向到这个baseinfo_account。
#url中的配置:
urlpatterns = patterns('',
 url(r'^index/', 'account.views.index_account'),
 url(r'^blance/', 'account.views.blance_account'),
)
# views.py
@login_required
def index_account(request, args=None):
 #按照正常的url匹配这么写有点不合适,看起来不规范
 if args:
  print args
 return render(request, 'accountuserinfo.html', {"user": user})
@login_required
def blance_account(request):
 return index_account(request, {"name": "orangleliu"})
#测试为:
#1 直接访问 /index 是否正常 (测试ok)
#2 访问 /blance 是否能正常的重定向到 /index页面,并且获取到参数(测试ok,页面为/index但是浏览器地址栏的url仍然是/blance)
#这样的带参数重定向是可行的。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。如有错误或未考虑完全的地方,望不吝赐教。

原文链接:https://www.cnblogs.com/ddb1-1/p/12419791.html

延伸 · 阅读

精彩推荐