struts2的s:param标签使用
程序员文章站
2024-03-14 08:26:28
...
struts2的s:param标签主要有两个属性name与value,
若想在value属性中输入直接量,则可以这样写:<s:param name="tableTitle" value="%{'user'}"/>,
也可以这样写:<s:param name="tableTitle">user</s:param>,这个表达式tableTitle变量的值为user字符串,而不是user变量;
若想取user对象的值,则可以这样写<s:param name="tableTitle" value="user"/>,
这些用法主要是在<s:component>标签中嵌套使用s:param的时候要注意