Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

jsf - Is it possible to use EL conditional operator in action attribute?

The conditional operator works in many attributes like "rendered" "value" and others.

But it does not work in action? Or am I doing it wrong?

<h:commandLink action="#{true ? bean.methodTrue() : bean.methodFalse()}"/>

Error: javax.el.ELException: Not a Valid Method Expression

(I realized it using primefaces ajax action attribute)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This is not supported. The action attribute is supposed to be a MethodExpression, but the conditional operator makes it a ValueExpression syntax. I don't think this will ever be supported for MethodExpressions in EL.

You have basically 2 options:

  1. Create a single action method which delegates the job.

    <h:commandButton ... action="#{bean.method}" />
    

    with

    public String method() {
        return condition ? methodTrue() : methodFalse();
    }
    

    If necessary, pass it in as method argument by #{bean.method(condition)}.

  2. Or, conditionally render 2 buttons.

    <h:commandButton ... action="#{bean.methodTrue}" rendered="#{bean.condition}" />
    <h:commandButton ... action="#{bean.methodFalse}" rendered="#{not bean.conditon}" />
    

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...