首页 > 代码库 > [Django]几种重定向的方式
[Django]几种重定向的方式
这里使用的是django1.5
需求: 有一个界面A,其中有一个form B, 前台提交B之后,后台保存数据之后,返回界面A,如果保存失败需要在A界面提示错误。
这里就需要后台的重定向,而且需要可以带着参数,也就是error message
这里收集了几种方法,简答说下需要那些包,怎么简单使用。
一、 使用HttpResponseRedirect
The first argument to the constructor is required – the path to redirect to. This can be a fully qualified URL (e.g.‘http://www.yahoo.com/search/‘) or an absolute path with no domain (e.g. ‘/search/‘)。 参数既可以使用完整的url,也可以是绝对路径。
from django.http import HttpResponseRedirect @login_required def update_time(request): #pass ... form处理 return HttpResponseRedirect('/commons/invoice_return/index/') #跳转到index界面
如果需要传参数,可以通过url参数
return HttpResponseRedirect('/commons/invoice_return/index/?message=error') #跳转到index界面这样在index处理函数中就可以get到错误信息。
二、 redirect和reverse
from django.core.urlresolvers import reverse from django.shortcuts import redirect #https://docs.djangoproject.com/en/1.5/topics/http/shortcuts/ @login_required def update_time(request): #pass ... form处理 return redirect(reverse('commons.views.invoice_return_index', args=[])) #跳转到index界面
redirect 类似HttpResponseRedirect的用法,也可以使用 字符串的url格式 /..inidex/?a=add
reverse 可以直接用views函数来指定重定向的处理函数,args是url匹配的值。 详细请参见文档
三、 其他
其他的也可以直接在url中配置,但是不知道怎么传参数。
from django.views.generic.simple import redirect_to 在url中添加 (r'^one/$', redirect_to, {'url': '/another/'}),
我们甚至可以使用session的方法传值
request.session['error_message'] = 'test' redirect('%s?error_message=test' % reverse('page_index'))这些方式类似于location刷新,客户端重新指定url。
还没找到怎么在服务端跳转处理函数,直接返回response到客户端的方法。
本文出自 “orangleliu笔记本” 博客,请务必保留此出处 http://blog.csdn.net/orangleliu/article/details/38347863
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。