和有什么区别 和${参数}

发布于 2024-07-26 05:55:56 字数 414 浏览 4 评论 0原文

在 struts 中,我注意到有两种不同的方式来访问变量。 我很好奇它们之间有什么区别以及何时正确使用它们。 例如,假设我们像这样设置变量高度:

<s:set var="height">300px</s:set>

现在我可以通过两种方式使用它:

<div style="height: ${height}">&nbsp;</div>

..或..

<div style="height: <s:property value='#height' />">&nbsp;</div>

有什么区别,哪个更好用?

In struts I notice there are two different ways to access variables. I am curious what the difference is and when to properly use each one. For example, suppose we set the variable height like so:

<s:set var="height">300px</s:set>

Now I can use it two ways:

<div style="height: ${height}"> </div>

..or..

<div style="height: <s:property value='#height' />"> </div>

What is the difference, and which is better to use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倾其所爱 2024-08-02 05:55:57

struts2 提供超出 ${} 提供的附加功能,例如在变量为 null 时提供默认值,以及控制 HTML 转义。

The struts2 <property> provides additional functionality beyond what ${} offers, such as providing a default value if the variable is null, and control over HTML-escaping.

独享拥抱 2024-08-02 05:55:57

您也可以在另一个 struts 2 标记内使用 ${}。 您不能将 struts 标签嵌套在彼此内部。

Also you can use ${} inside another struts 2 tag. You can not nestle struts tags inside each other.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文