我使用转换消息组件将.csv文件转移到另一个.csv文件。 输入正在进入" YYYY / DD / MM HH:MM:SS"格式,但我需要转换为" MM / DD / YYYY"格式。
答案 0 :(得分:2)
您需要使用一种格式将字符串解析为Date,然后使用其他格式将字符串解析为字符串:
gulp
答案 1 :(得分:0)
您也可以尝试使用此表达式
%dw 1.0
%output application/csv
---
formatedDate: |2003-10-01T23:57:59| as :string {format: "MM-dd-yyyy"}
要获得更多日期转换,您可以参考mulesoft文档。
https://developer.mulesoft.com/docs/dataweave#_changing_the_format_of_a_date