<html:rewrite page="" > Struts 2 中的等效标签

问题描述 投票:0回答:1

Struts2 中

<html:rewrite>
标签相当于什么?

<html:rewrite page="/MyAction.action">
url-rewriting struts2 struts-1
1个回答
1
投票

您可以使用

url
标签来构建 url,这相当于 html 重写标签。

<s:url var="myUrl" action="MyAction"/>

但是如果你需要重写url,那么你可以使用路径

<s:url var="myUrl" value="/MyAction.action"/>

如果可能,您可以在 JSP 中使用

<s:property value="%{#myUrl}"/>
${myUrl}
输出值。

您可以在 Struts 文档网站上阅读有关

<s:url>
标签 的更多信息。

© www.soinside.com 2019 - 2024. All rights reserved.