我对WebApp一般都是新手,特别是Spring MVC。我正在写一个小项目,我希望得到客户发布的键值对。如果我事先知道钥匙的价值,我就能做到。我在参数处理中读到的教程也假定您知道参数名称。但是如果我不知道参数名称会怎样。
@Controller
@RequestMapping(value = "/keyvaluepost")
public class ProcessController {
@RequestMapping(method = RequestMethod.POST)
public String doPost(
HttpServletRequest request,
HttpServletResponse response,
@RequestParam("knownKey") String knownKey) {
// process knownKey here
// but what if i do not know the key?
}
基本上,我在php中寻找类似于$ _POST的东西,我可以获得键值对。任何帮助将不胜感激。谢谢。