null を dataweave 2.0 の空白に置き換える必要があります。多くの組み合わせを試しましたが、エラーが発生しました。
参考までにスクリーンショットを添付します。
同じのポインターを提供してください。
null を dataweave 2.0 の空白に置き換える必要があります。多くの組み合わせを試しましたが、エラーが発生しました。
参考までにスクリーンショットを添付します。
同じのポインターを提供してください。
これは、空の文字列を (doctorId) ではなく dValue.doctorId に割り当てているためです。また、default
ここではデフォルト値を設定する方が簡単です。次に例を示します。
%dw 2.0
output application/xml
var doctorInformationList=[{doctorId: '1'},{doctorId: '2'}, {}]
---
root: {
DoctorInformationList: doctorInformationList map ((dValue, dIndex) ->
doctorId : dValue.doctorId default ""
)
}