我输入了json,其中"runtime": "01:45:23"
字段应该使用Jolt转换为seconds
(Integer
)。还有其他领域的变化,以及需要和那些完成,但我坚持与运行时的转换
输入JSON:
{
"title_info": {
"titleId": "3518864",
"contentType": "Episode",
"titleBrief": "Beirut S1: 04",
"runtime": "01:45:23",
"caption": "Yes"
}
}
输出:
{
"titleId": "3518864",
"contentType": "Episode",
"caption": true,
"runtime": 6323
}
1条答案
按热度按时间sbtkgmzw1#
Jolt中没有乘法函数,但是你可以在modify规范中使用***divide***,比如