如何使用 jolt 规格来插入 mongodb 日期?
How to use jolt specification for mongodb date insertion?
我已经 Mongodb JSON 输入如下,我想使用 JOLT.Can 进行转换,你们中有人建议使用 JOLT 规范来获得预期的输出吗?
Input:{
"BirthDate": "2020-09-08",
"name": "duplicate"
}
Expected Output:{
"BirthDate": {"$date": "2020-09-08"},
"name": "duplicate"
}
检查此规范,
[
{
"operation": "shift",
"spec": {
"name": "name",
"BirthDate": "BirthDate.\$date"
}
}
]
我已经 Mongodb JSON 输入如下,我想使用 JOLT.Can 进行转换,你们中有人建议使用 JOLT 规范来获得预期的输出吗?
Input:{
"BirthDate": "2020-09-08",
"name": "duplicate"
}
Expected Output:{
"BirthDate": {"$date": "2020-09-08"},
"name": "duplicate"
}
检查此规范,
[
{
"operation": "shift",
"spec": {
"name": "name",
"BirthDate": "BirthDate.\$date"
}
}
]