想不明白為什麼前台接收不到值啊。。
action:
public String pylShow() throws Exception{
getMonitorObj = getModel();
getMonitorObj = pylmonitormanager.pylgetmoninfo(getMonitorObj.getIdMon());
return SUCCESS;
}
struts.xml
<action name="pylShow" class="PylAction" method="pylShow">
<result name="success">/cold/pylshow.jsp</result>
</action>
jsp:
<input name="test" id="test" value="<s:property value="getMonitorObj.idMon" />"/>
這個input標簽接收不到值。。求大神指教!
用看看值棧中有沒有getMonitorObj,沒有的話在execute()中加上下面語句試試。
ActionContext ctx = ActionContext.getContext();
ctx.put("getMonitorObj",getMonitorObj);