我想计算24小时-当前时间,所以我使用moment.js做到了
Error: Error when checking input: expected conv2d_Conv2D1_input to have 4 dimension(s). but got array with shape 4,1
但我能接受
moment('24:00:00').subtract(now, 'HH:mm:ss').format("HH:mm:ss")
帮帮我
答案 0 :(得分:0)
我这样解决了
moment('24:00:00', 'HH:mm:ss')
.subtract(moment().format("HH"), 'hours')
.subtract(moment().format("mm"), 'minutes')
.subtract(moment().format("ss"), 'seconds')
.format("HH:mm:ss")