How to pass a parameter through another bean's object inside a method called from <f:event listener=“…”>

北战南征 提交于 2020-01-24 01:10:21

问题


How to pass a parameter through another bean's object inside a method called from <f:event listener="...">?

I am trying to pass a parameter generated by another bean inside a showData() method that is to be called on using

<f:event listener="#{myTransformerBeans.showData}">

The parameter would be #{myDataBean.myId}.


回答1:


you could also try

<f:event listener="#{myTransformerBeans.showData(myDataBean.myId)}">


来源:https://stackoverflow.com/questions/10013343/how-to-pass-a-parameter-through-another-beans-object-inside-a-method-called-fro

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!