Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
'CW' という名前のアクション ノードがあり、その後、'CW' がエラーを返すかどうかを確認するための決定ノードを配置しました.... 述語はどのように記述すればよいですか?
私は試した:
${ wf:errorCode('CW') eq '' }次にYに行きます
${ wf:errorCode('CW') eq '' }
${ wf:errorCode('CW') != '' }次にNに行きます
${ wf:errorCode('CW') != '' }
空の文字列を返しますが (エラーはありません)、常にN. 何かアドバイスはありますか?ありがとう!!
N
これを行うために、OK およびエラー アクション遷移を使用することはできませんか?
<action name="CW"> <!-- .... --> <ok to="Y"/> <error to="N"/> <\action>
${ wf:errorCode('CW') == null }
次のようなエラーで CW が終了するかどうかを確認することもできます。
${ wf:lastErrorNode()=='CW' }
CW完了直後。