1. 程式人生 > >ognl表達式註意事項

ognl表達式註意事項

不能 home htm 對象 com strong ext iter style

1、在jsp頁面中:
<s:a action="departmentAction_delete.action?did="></s:a>
說明:
1、struts2的標簽只能跟ognl表達式. (符號"#,%")
2、html標簽只能跟el表達式.(符號"$"
3、在struts2的標簽中:
1、s:property中的value屬性
2、s:iterator中的value屬性
3、s:select中的value屬性
以上這些屬性都直接能跟ognl表達式尋找相應的數據
2、s:textfield,s:a中的action等都不能直接跟ognl表達式


<s:textfield name="aa" value="aa"/>
上述的標簽的值為"aa"
<s:textfield name="aa" value="%{aa}"/>
上述標簽中的值為對象棧中key值為aa的所對應的value值

ognl表達式註意事項