7
我很好奇,是什麼執行Ajax調用的這兩種方式的區別:JSF F:阿賈克斯VS監聽行動的commandButton
<h:commandButton value="Submit" action="#{bean.action}">
<f:ajax execute="@form" render="component"/>
</h:commandButton>
和
<h:commandButton value="Submit">
<f:ajax listener="#{bean.action}" execute="@form" render="component"/>
</h:commandButton>
看來,人們使用第一第二種方式似乎也可以正常工作......