1
我想要的值比較枚舉在Struts中:的Struts 2 - 比較對象
<s:if test="%{myValue == com.app.core.Values.ALL}" />
其中myValue
在行動聲明,com.app.core.Values
中所引用這一個另一個項目被宣佈。
任何提示?
謝謝
我想要的值比較枚舉在Struts中:的Struts 2 - 比較對象
<s:if test="%{myValue == com.app.core.Values.ALL}" />
其中myValue
在行動聲明,com.app.core.Values
中所引用這一個另一個項目被宣佈。
任何提示?
謝謝
請參閱Accessing static properties在Struts文檔中。
我想你需要的是:
<s:if test="myValue == @[email protected]">
您可能還需要在Struts配置不變struts.ognl.allowStaticMethodAccess設置爲true。
+1有時,在您的操作中定義一種方法比較乾淨 – leonbloy 2010-06-25 16:05:39