請教一個JSF引數傳遞的問題

pub10發表於2007-03-06
這個問題困擾了我好幾天了,希望哪位大俠幫幫忙.

<h:commandLink value="[reply all]" id="reply_all" action="#{composeBean.composeStart}" actionListener="#{composeBean.mail}">
	<f:param id="action" name="action_" value="reply_all"/>
</h:commandLink>
<h:commandLink value="[delete]" id="delete" action="#{composeBean.composeStart}" actionListener="#{composeBean.mail}">
	<f:param id="action" name="action_2" value="delete"/>
</h:commandLink>
<p class="indent">

在一個頁面裡在呼叫同一個Listener用<f:param>傳入一個引數,不管點選哪個commandLink為什麼只能取到第一個name="action_"的值,
如果不能採用這樣的方法,要哪樣才好?

相關文章