JSTL <c:param>標簽
<c:param>標簽允許適當的URL請求參數並在URL中指定,它並要求任何必要的URL編碼。
在<c:param>標簽的name屬性表示參數名稱,而 value屬性指示該參數值:
屬性:
<c:param>標簽具有以下屬性:
屬性 | 描述 | 必須 | 默認 |
---|---|---|---|
name | Name of the request parameter to set in the URL | Yes | None |
value | Value of the request parameter to set in the URL | No | Body |
實例:
如果需要將參數傳遞到<c:import>標簽,使用<c:url>標記首先創建URL,如下所示:
<c:url value="/index.jsp" var="myURL"> <c:param name="trackingId" value="1234"/> <c:param name="reportType" value="summary"/> </c:url> <c:import url="${myURL}"/>
上述要求將通過網址如下 - 試一試。
"/index.jsp?trackingId=1234;reportType=summary&from=gitbook.net"