struts.xml中action标签中的属性方法是什么?我见过很多这个属性的用例,但我不明白它是如何改变行为的?
例如,当我更改以下方法属性或删除它时,我看不到任何事情发生。我尝试执行并输入和{1}
. 为什么有时我会看到{1}
struts.xml 文件的这个属性。
<action name="ShowAddItemPage" method="input" class="action.clerk.ShowAddItemPage">
<result name="success" type="tiles">addItem</result>
<result name="generalError" type="tiles">clerkGeneralError</result>
<result name="input" type="tiles">addItem</result>
</action>