在我的应用程序中,我有类似的东西:
<h:commandButton value="Some Value" action="#{outcome}" />
我希望将一个参数传递给结果参数:
<ui:param name="outcome" value="index" />
但我收到错误:
action="#{outcome}": Identity 'outcome' does not reference a MethodExpression instance, returned type: java.lang.String
JSF认为我正在尝试传递方法表达式,但我只想传递一些字符串值。有办法解决这个问题吗?
谢谢。