如何使用Dataweave将列表hashmap转换为Array

时间:2017-08-29 09:37:57

标签: mule mule-studio mule-component dataweave mule-esb

我的列表如下

[{customerId="123"},{customerId="456"},{customerId="786"}]

我想将上面的数据转换为数组,如下所示

[123,456,786]

请帮助您了解如何使用dataweave

1 个答案:

答案 0 :(得分:4)

以下代码将返回数组

%dw 1.0
%output application/java
---
payload.customerId map $ as :number

请参阅dataweave-selectors了解详情。