Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在里程碑对象模型的自定义字段中保存 dateTime 值,我发现 TargetDate 和我的 DateTime 自定义字段之间有些不同:例如,我正在保存"2018-04-06T00:00:00.000Z"到 TargetDate 和我的自定义字段,但在 Rally 方面,它已保存两种不同的格式。为什么会这样?
"2018-04-06T00:00:00.000Z"
谢谢!
我想我知道为什么。对于内置字段,所有日期都转换为 UTC,而对于自定义字段,它期望日期为 UTC。将我的 c_date 转换为 UTC 并保存它并且它们匹配:-)