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.
DataWeave トランスフォーマーを介してミュールに送信プロパティを表示する方法は?
私はこれを試しました:
%dw 1.0 %output application/json skipNullOn="everywhere" --- { test_property: message.outboundProperties.testProperty }
しかし、私はこのエラーが発生します: There is no variable named 'message'.
There is no variable named 'message'
ありがとう。
以下に示すように、「メッセージ」を使用せずに直接呼び出す
test_property: outboundProperties.testProperty
または、フロー変数を定義して、以下のように使用します
flowvar1: flowVars.flowvar1