如何檢查變量是否存在於Mule 3.2中? 如何創建或替換變量?我如何檢查變量是否存在於Mule 3.2中?
我的流量異常是
<choice doc:name="Choice">
<when expression="#[myVar==null]">
<processor-chain>
<set-variable variableName="myVar" value="value1" doc:name="myVar"/>
</processor-chain>
</when>
<otherwise>
<processor-chain>
<set-variable variableName="myVar" value="#[variable:myVar]" doc:name="myVar"/>
</processor-chain>
</otherwise>
</choice>
「myVar的== NULL」 不工作