将值添加到 JSP 中的字符串数组
add value to String array in JSP
我正在尝试向数组添加另一个值..
<%= ProductManager.getAddItems(new String[] {((String)pageContext.getAttribute("skuId"))}, (Order)pageContext.getAttribute("order"), request,response) %>
我想将 pageContext.getAttribute("qty") 添加到上面的字符串数组,但似乎无法让它工作。 Google 主题死了,没有找到任何我正在努力完成的例子..任何建议将不胜感激!
像这样的东西应该可以工作(虽然还没有在控制台中尝试过)
<%= ProductManager.getAddItems(new String[] {((String)pageContext.getAttribute("skuId")), ((String)pageContext.getAttribute("qty"))}, (Order)pageContext.getAttribute("order"), request,response) %>
我正在尝试向数组添加另一个值..
<%= ProductManager.getAddItems(new String[] {((String)pageContext.getAttribute("skuId"))}, (Order)pageContext.getAttribute("order"), request,response) %>
我想将 pageContext.getAttribute("qty") 添加到上面的字符串数组,但似乎无法让它工作。 Google 主题死了,没有找到任何我正在努力完成的例子..任何建议将不胜感激!
像这样的东西应该可以工作(虽然还没有在控制台中尝试过)
<%= ProductManager.getAddItems(new String[] {((String)pageContext.getAttribute("skuId")), ((String)pageContext.getAttribute("qty"))}, (Order)pageContext.getAttribute("order"), request,response) %>