在下面的Spring 3.1动作中,我必须做一些事情并将属性添加到POST请求中,然后通过POST将其重定向到外部URL(我不能使用GET)。
@RequestMapping(value = "/selectCUAA", method = RequestMethod.POST) public ModelAndView selectCUAA(@RequestParam(value="userID", required=true) String cuaa, ModelMap model) { //query & other... model.addAttribute(PARAM_NAME_USER, cuaa); model.addAttribute(... , ...); return new ModelAndView("redirect:http://www.externalURL.com/", model); }
但是,使用此代码可以使用GET方法(属性附加到http://www.externalURL.com/)。如何使用POST方法?这是来自外部URL的必填项。
就像@stepanian所说的那样,您不能使用POST进行重定向。但是有几种解决方法:
HTML:
<form name="myRedirectForm" action="https://processthis.com/process" method="post"> <input name="name" type="hidden" value="xyz" /> <input name="phone" type="hidden" value="9898989898" /> <noscript> <input type="submit" value="Click here to continue" /> </noscript> </form> <script type="text/javascript"> $(document).ready(function() { document.myRedirectForm.submit(); }); </script>