我創建Struts 2的形式,使用下面的代碼:的Struts 2 - 生成表單動作
<s:form id="form" onSubmit="getParameters();">
我不明白爲什麼產生的下列之一:
<form id="form" name="form" action="/Projet/ListAction.action" method="post" onSubmit="return getParameters();">
這裏是我的struts.xml
<action name="ListBrochures" class="fr.web.actions.ListAction" method="execute">
<result name="success">listAction.jsp</result>
</action>
爲什麼我有一個名爲ListAction.action的操作。我的目標不是提交表單,而是發送Ajax請求。因此,在我的Ajax調用之前調用此操作時,這會給我的項目帶來麻煩。 我只想讓Struts不會在我的表單中生成動作。我沒有指定任何行動。 感謝您的幫助。
我相信它是從當前one.set'theme = simple'像'
' –