Essayez de ne pas écrire de code Java en jsp. C'était ainsi que JSP était écrit il y a longtemps lors de sa première sortie, plus tard, il s'est avéré très difficile à maintenir et à modifier, donc le type actuel d'expression EL $. {} apparu.
Méthode d'écriture ancienne (code java et code html sont directement mélangés) :
<body> <h1>购物车</h1> <table border="1"> <tr> <th>商品名称</th> <th>商品数量</th> </tr> <% Map<String,Integer> cart = (Map<String,Integer>)session.getAttribute("cart"); if(cart!=null && cart.size()>0){ for(Entry<String,Integer> en : cart.entrySet()){ %> <tr> <td><%=en.getKey() %></td> <td><%=en.getValue() %></td> </tr> <% } } %> </table> </body>
Méthode d'écriture moderne (JSTL tag )
<table border="1"> <tr> <th>用户名</th> <th>当前遍历索引</th> <th>当前遍历计数</th> <th>是否是集合第一个元素</th> <th>是否是集合最后一个元素</th> </tr> <c:forEach items="${list}" var="name" varStatus="st" > <tr class="${st.index%2==0?"one":"two"}" > <td>${name}</td> <td>${st.index}</td> <td>${st.count}</td> <td>${st.first}</td> <td>${st.last}</td> </tr> </c:forEach> </table> <hr> <!-- 数数的功能--> <c:forEach begin="1" end="10" step="1" var="num" > ${num} </c:forEach>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!