Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用下一个 URL 执行操作
http://localhost:8080/FantasticWebsite/services/addPhone?id=6
因此,我的参数对象必须至少具有值为“6”的键“id”,但不!,我在我的表单中获得了所有参数,但该 ID 没有出现。
我用这个获取参数:
id=Integer.parseInt(parameter.get("id")[0]);
有人可以帮助我吗?
采用
String id = getRequest().getParameter("id");
在哪里
protected HttpServletRequest getRequest() { return ServletActionContext.getRequest(); }