如何通过数据编织变换器在mule中显示出站属性?
我试过了:
%dw 1.0
%output application/json skipNullOn="everywhere"
---
{
test_property: message.outboundProperties.testProperty,
}
但我收到此错误:There is no variable named 'message'
答案 0 :(得分:2)
直接调用而不使用'message',如下所示
test_property: outboundProperties.testProperty
或者定义一个流变量并使用它如下
flowvar1: flowVars.flowvar1