私は JSF2.0 を使用しており、マネージド Bean クラスで要求パラメーター値を設定し、2 番目のマネージド Bean クラスで取得したいと考えています。それからどうすればそれができますか私を助けてください。前もって感謝します。
質問する
181 次
1 に答える
0
Use "view parameters" (f:viewParam).
You declare these on your Facelet for each request parameter that you wish to receive, and bind those to properties in your backing bean. You can attach converters and validators to them if you wish.
Alternatively, you can access the raw parameter map via the ExternalContext, which you can obtain from FacesContext.
于 2012-04-18T08:36:00.603 に答える