输入: -
[
{
"appName": "helloworld-1"
},
{
"appName": "helloworld-2"
}
]
预期输出
{
"appList": [ "helloworld-1" , "helloworld-2" ]
}
有人可以为我指导数据编织脚本吗?
答案 0 :(得分:0)
根据DataWeave Documentation,您可以应用多值选择器。多值选择器返回一个数组,其中包含其键与表达式匹配的所有值。
%dw 1.0
%output application/json
---
{
appList : payload.*appName
}