javaweb中,前臺向後臺提交多個同名(name)參數,後臺怎麼接受

SpringMVC中可以定義一個數組參數 @RequestMapping(value="/toTest") public void toTest(HttpServletRequest request,String[] id) throws Exception { System.out.println(id.length); } 或者使用request內置對象 String[] id = reque
相關文章
相關標籤/搜索