一、導入基本使用標籤庫html
<%@ page contentType="text/html;charset=UTF-8" language="java"%> <%@ taglib prefix="stripes" uri="http://stripes.sourceforge.net/stripes.tld"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
二、遍歷集合對象java
<table> <tr> <th>Order ID</th> <th>Date</th> <th>Total Price</th> </tr> <c:forEach var="order" items="${actionBean.orderList}"> <tr> <td><stripes:link beanclass="org.mybatis.jpetstore.web.actions.OrderActionBean" event="viewOrder"> <stripes:param name="orderId" value="${order.orderId}" /> ${order.orderId} </stripes:link></td> <td><fmt:formatDate value="${order.orderDate}" pattern="yyyy/MM/dd hh:mm:ss" /></td> <td><fmt:formatNumber value="${order.totalPrice}" pattern="$#,##0.00" /></td> </tr> </c:forEach> </table>
標籤及屬性講解:web
2-一、<c:forEach> JSTL 遍歷標籤 mybatis
var:循環遍歷對象的臨時名稱聲明;items: 後臺傳輸的 數據項集合jsp
2-二、<stripes:link> 超連接ide
beanclass: 對應的*ActionBean的全路徑;event:表示處理的事件即@HandlerEvent("viewName")spa
2-三、<stripes:param>頁面參數設置,至關於隱藏的input標籤.net
name:*ActionBean對應的屬性名稱;value:爲屬性設置的值orm
2-四、<fmt:formatDate> JSTL格式化標籤: 時間xml
value:對象的時間值;pattern:匹配表達式(格式)
2-五、<fmt:formatNumber> JSTL格式化標籤:數字
同1-4.
三、Form表單的使用
<div id="Catalog"><stripes:form beanclass="org.mybatis.jpetstore.web.actions.OrderActionBean"> <table> <tr> <th colspan=2>Shipping Address</th> </tr> <tr> <td>First name:</td> <td><stripes:text name="order.shipToFirstName" /></td> </tr> <tr> <td>Last name:</td> <td><stripes:text name="order.shipToLastName" /></td> </tr> <tr> <td>Address 1:</td> <td><stripes:text size="40" name="order.shipAddress1" /></td> </tr> <tr> <td>Address 2:</td> <td><stripes:text size="40" name="order.shipAddress2" /></td> </tr> <tr> <td>City:</td> <td><stripes:text name="order.shipCity" /></td> </tr> <tr> <td>State:</td> <td><stripes:text size="4" name="order.shipState" /></td> </tr> <tr> <td>Zip:</td> <td><stripes:text size="10" name="order.shipZip" /></td> </tr> <tr> <td>Country:</td> <td><stripes:text size="15" name="order.shipCountry" /></td> </tr> </table> <stripes:submit name="newOrder" value="Continue" /> </stripes:form></div>
標籤及屬性講解:
一、<stripes:form> 表單
beanclass :對應的*ActionBean的全路徑;
二、<stripes:text> 文本輸入框
name:*ActionBean下對應的實體的屬性
三、<stripes:submit> 表單提交標籤
name:對應的*ActionBean處理的事件 ;value:按鈕顯示的文字
四、獲取*Action對象及其屬性值
假設有一個HelloActionBean 它裏面有如下屬性:
(1)List<Order> orders;//訂單集合 獲取集合數據對象:${actionBean.orders};
(2)Order order;//訂單對象 獲取Order對象的屬性:$(actionBean.order.attribute);
注:actionBean是全部設置的beanclass的基本訪問對象。