1
等於忽略情況下,我想檢查等於忽略案件dataweave如何使用Dataweave
%dw 1.0
%output application/xml
---
Order:
{
Channel:[email protected],
Code:[email protected],
(Status:[email protected]) when ([email protected]== "complete") ,
OrderLines:{
((payload.Order.OrderLines.*OrderLine default []) map {
OrderLine:{
EntryNumber:[email protected],
Status:[email protected],
Quantity:[email protected]
}
})
}
}
我想忽略的情況,同時檢查時的狀態。如何實現它在騾子dataweave
但如何檢查傳入值的格式有效載荷?我們不得不忽略 –
大寫的輸入值並將其與大寫常量進行比較。這樣他們都將大寫,所以案件在技術上被忽略。 –
知道了瑞恩.. !! –