使用与HttpResponseRedirect一起使用的反向传递参数

时间:2017-03-24 03:15:23

标签: django django-urls

我目前有类似的东西

  return HttpResponseRedirect(reverse("named_foo"),request)

如何通过反向将参数传递给named_foo定义? named_foo定义的参数如下:

def fooMethod(request) :
      print "inside foo method"

1 个答案:

答案 0 :(得分:3)

我担心反向功能不包括GET参数。但你可以随时做'%s?key=foo' % reverse('named_foo')

之类的事情