|
JspWriter out=pageContext.getOut(); add a code before
List list=(List)HttpServletRequest.getAttribute("list");
-------------------------------------------------- ------
The parameters passed in the request cannot be List, only strings or arrays, so the conclusion is not true!
Then use array directly, or convert list to array to do it,
I didn’t experiment, I only thought of the principle. |
|