标签: jsf operators el
我用and运算符编写了el jsf表达式,但即使两者都为真,它也会返回false。
and
#{not empty scope.jobContext}是真的
#{not empty scope.jobContext}
#{not empty scope.manager}是真的
#{not empty scope.manager}
#{not empty scope.jobContext and not empty scope.manager}是假的。
#{not empty scope.jobContext and not empty scope.manager}
我不知道为什么。可能有什么不对?