ServletActionContext
稍后当我迭代这些属性时,我会从 bu 中删除一些ServletActionContext
属性继续显示。
ServletActionContext.getRequest().removeAttribute("myCategory");
ServletActionContext.getRequest().removeAttribute("title");
for (Enumeration e = ServletActionContext.getRequest().getParameterNames(); e.hasMoreElements();) {
parameterName = (String) e.nextElement();
parameterValue = ServletActionContext.getRequest().getParameter(parameterName);
System.out.println(parameterName +":"+ parameterValue);
}
控制台不断向我myCategory:something
展示title:otherthing
任何人都可以看到有什么问题吗?