mule4 日期格式解析问题,在 dataweave 2.0 中解析 2019-02-27T15:43:38.38 时无法解析 'T'
mule4 date format parsing issue, when parsing 2019-02-27T15:43:38.38 in dataweave 2.0 Unable to parse 'T'
我正在尝试将当前时间格式化为 yyyy-mm-dd'T'HH:59:59
但在 dataweave 2.0 中低于 'T'.
的异常
下面是我的数据编织代码:
StopDate: now() as String{format: 'yyyy-mm-dd'T'HH:59:59'}
异常
Message : "org.mule.weave.v2.parser.exception.ParseException: Unable to resolve variable T
{StopDate: (currentTimeStamp) as String{format: 'yyyy-mm-dd'T'HH:59:59'}}), ^" evaluating expression: "%dw 2.0
我是Mule4新手,请指导
这是因为您在单引号内使用了单引号 ' '。
您可以将其更改为双引号内的单引号:
{StopDate: (currentTimeStamp) as String{format: "yyyy-mm-dd'T'HH:59:59"}}
或转义引号:
{StopDate: (currentTimeStamp) as String{format: 'yyyy-mm-dd\'T\'HH:59:59'}}
我正在尝试将当前时间格式化为 yyyy-mm-dd'T'HH:59:59 但在 dataweave 2.0 中低于 'T'.
的异常下面是我的数据编织代码:
StopDate: now() as String{format: 'yyyy-mm-dd'T'HH:59:59'}
异常
Message : "org.mule.weave.v2.parser.exception.ParseException: Unable to resolve variable T
{StopDate: (currentTimeStamp) as String{format: 'yyyy-mm-dd'T'HH:59:59'}}), ^" evaluating expression: "%dw 2.0
我是Mule4新手,请指导
这是因为您在单引号内使用了单引号 ' '。
您可以将其更改为双引号内的单引号:
{StopDate: (currentTimeStamp) as String{format: "yyyy-mm-dd'T'HH:59:59"}}
或转义引号:
{StopDate: (currentTimeStamp) as String{format: 'yyyy-mm-dd\'T\'HH:59:59'}}