我有密码检查(不是用户登录,只是密码验证)。我有一个用户提交数据的表单。请求被发送到一个页面,如果密码是否正确,它们都会返回到同一页面。
我想向页面发送有关该作业的参数。我在考虑这样的事情:foo.com/page?success
。
我无法shortcuts.redirect
这样做。
我目前正在这样做:
HttpResponse('<script type="text/javascript">window.location.replace('+reverse('app:index')+');</script>')
答案 0 :(得分:1)
public static void put(String key, String value) {
data.get().put(key, value);
}
public static String get(String key) {
return data.get().get(key);
}
重定向到您提供的任何路径。如果你给它redirect
,它会重定向到它。
答案 1 :(得分:0)
想出来,没关系
HttpResponseRedirect(reverse('app:index')+'?arg')
就是这样。