我想将"Mon Feb 17 00:00:00 IST 2020"格式的日期转换为"2020-02-27"。如何在mule 4中的dataweave中转换?
%dw 2.0
output application/json
---
payload as DateTime {format: "EEE MMM dd HH:mm:ss z yyyy"} as String {format:"yyyy-MM-dd"}