What's the Difference Between <s:property ..> and ${param}

这一生的挚爱 提交于 2019-12-07 10:22:08

问题


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}">&nbsp;</div>

..or..

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

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


回答1:


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.




回答2:


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



来源:https://stackoverflow.com/questions/1099933/whats-the-difference-between-sproperty-and-param

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!