我有一个时间戳字典,我希望date in ISO Format
为key
,string of what occured on the date
为value
。
离。 timestamps[date.toISOString()] = "SignedUp"
ISO字符串默认为yyyy-MM-ddTHH:mm:ss.AZ
,所以我遇到了这个问题:
[Error]: Nested keys should not contain the '$' or '.' characters
有没有办法可以使用ISO日期字符串而不会出现此问题?我们的后端使用这种格式存储日期,所以我更喜欢它,如果它可以保持这种方式。提前谢谢!