对 bean 属性 struts jstl 执行操作
perform action on bean property struts jstl
我在 Struts 中有 bean (name=tF) 截至目前我们正在使用 scriplet 对其变量执行操作 有人可以帮助删除 scriplet 并使用 jsp 标签或 Struts 标签
<bean:define name="tF" property="varin" id="lvarin" type="java.lang.Integer"/>
<%=(lvarin.intValue()/100.00) %>
你可以使用jstl 1.2
<bean:define name="tF" property="varin" id="lvarin" type="java.lang.Integer"/>
${(lvarin.intValue()/100.00)}
尝试使用 JSTL 语法:${tF.varin / 100}
不需要 scriptlet 和 Struts 标签。
我在 Struts 中有 bean (name=tF) 截至目前我们正在使用 scriplet 对其变量执行操作 有人可以帮助删除 scriplet 并使用 jsp 标签或 Struts 标签
<bean:define name="tF" property="varin" id="lvarin" type="java.lang.Integer"/>
<%=(lvarin.intValue()/100.00) %>
你可以使用jstl 1.2
<bean:define name="tF" property="varin" id="lvarin" type="java.lang.Integer"/>
${(lvarin.intValue()/100.00)}
尝试使用 JSTL 语法:${tF.varin / 100}
不需要 scriptlet 和 Struts 标签。