Struts2 <s:a>标签示例
精华
小牛编辑
154浏览
2023-03-14
Struts2 <s:a>标签用于渲染一个 HTML 的“<a>” 标签。最好的做法是使用<s:url>标签来创建URL,并将其嵌入到<a>标签。 例如,
<s:url value="http://www.google.com" var="googleURL" /> <s:a href="%{googleURL}">Google</s:a>
在本教程中,它显示了3种方式来使用Struts2 <s:a>标签。
1. 动作
Action类转发请求。
ATagAction.java
package com.yiibai.common.action; import com.opensymphony.xwork2.ActionSupport; public class ATagAction extends ActionSupport{ public String execute() { return SUCCESS; } }
2. <s:a>标签示例
JSP页面显示使用“<s:a>”标签,以不同的方式呈现 URL
a.jsp
<%@ taglib prefix="s" uri="/struts-tags" %> <html> <head><title>Struts2 <s:a>标签示例</title> </head> <body> <h1>Struts2 a tag example</h1> <ol> <li> <s:url value="https://www.xnip.cn" var="yiibaiURL" /> <s:a href="%{yiibaiURL}">J2EE web development tutorials</s:a> </li> <li> <s:a href="http://www.google.com">Google search engine</s:a> </li> <li> <s:url action="aTagAction.action" var="aURL" /> <s:a href="%{aURL}">aTagAction</s:a> </li> </ol> </body> </html>
3. struts.xml
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <constant name="struts.devMode" value="true" /> <package name="default" namespace="/" extends="struts-default"> <action name="aTagAction" class="com.yiibai.common.action.aTagAction" > <result name="success">pages/a.jsp</result> </action> </package> </struts>
4. 示例
http://localhost:8080/struts2atag/aTagAction.action
在浏览器中打开上述标签,将显示结果如下:
输出HTML源码如下:
<html> <head> </head> <body> <h1>Struts2 <s:a>标签示例</h1> <ol> <li> <a href="https://www.xnip.cn">J2EE web development tutorials</a> </li> <li> <a href="http://www.google.com">Google search engine</a> </li> <li> <a href="/struts2atag/aTagAction.action">aTagAction</a> </li> </ol> </body> </html>
参考
- Struts2 <s:a>标签文档
代码下载 - http://pan.baidu.com/s/1sjzOkYL