我有以下。参数“g”允许为“on”或“off”,否则进入错误策略。但是,从不调用异常情况。相反,如果不是“on”或“off”的东西作为“g”传递,则调用“on”情况。这是为什么?或者,有没有更好的表达方式?
<PreFlow name="PreFlow">
<Request>
<Step>
<Condition>message.queryparam.g := "on"</Condition>
<Name>GOn</Name>
</Step>
<Step>
<Condition>message.queryparam.g := "off"</Condition>
<Name>GOff</Name>
</Step>
<Step>
<Condition>!((message.queryparam.g := "off") || (message.queryparam.g := "on"))</Condition>
<Name>GError</Name>
</Step>
</Request>