struts2 文本框标签抛出异常
struts2 textfield tag throws exception
struts2 jsp 页面出现异常的原因是什么?它抛出以下异常:未终止的
<s:textfield name="createdDate" id="createdDate" cssClass="form-control width-xs" value="<s:property value="%{createdDate}"/>" />
您不应将一个 struts 标签放在另一个标签中,否则会导致异常
value="<s:property value="%{createdDate}"/>"
你可以这样做
value="%{createdDate}"
struts2 jsp 页面出现异常的原因是什么?它抛出以下异常:未终止的 <s:textfield name="createdDate" id="createdDate" cssClass="form-control width-xs" value="<s:property value="%{createdDate}"/>" />
您不应将一个 struts 标签放在另一个标签中,否则会导致异常
value="<s:property value="%{createdDate}"/>"
你可以这样做
value="%{createdDate}"