JSF f:ajax listener vs commandButton action

前端 未结 1 1010
长发绾君心
长发绾君心 2020-12-09 00:04

I\'m curious what is the difference between these two ways of executing ajax calls:


   <         


        
相关标签:
1条回答
  • 2020-12-09 00:45

    The first way allows for navigation by returning a String outcome and the second not. The second way won't invoke anything if the client has JS disabled, while the first way gracefully degrades. Indeed, the first way is used more often.

    The second way is the only way in components which doesn't have an action attribute, such as <h:selectOneMenu> and so on.

    0 讨论(0)
提交回复
热议问题