【发布时间】:2013-10-07 05:33:32
【问题描述】:
我想在带有HttpResponseRedirect 的视图中传递值列表。我不想要会话变量。我该怎么做这个功能如下。
def fun_one(request):
x = [a,b,c,d]
y = [1,2,3,4]
return HttpResponseRedirect('/fun_two/')
def fun_two(request):
.
.
.
print "i want use function One values x & y here"
【问题讨论】:
标签: python django python-2.7 django-views