返回python`time`对象到前端?

时间:2018-10-29 15:30:52

标签: javascript python datetime

在python中,timedate库包含一个datetime(时间戳, a日期and a time`类。是否有仅时间

中的(不对应于特定日期)概念
  • javascript
  • iso 8601

那么,我可以将datetime.time对象以标准化的方式返回到前端吗?

2 个答案:

答案 0 :(得分:2)

这是您要寻找的东西吗?

>>> import datetime
>>> now = datetime.datetime.now()
>>> now.time()
datetime.time(11, 39, 33, 932976)
>>> now.time().isoformat()
'11:39:33.932976'
>>>

答案 1 :(得分:1)

使用.isoformatstack build --copy-compiler-tool hdevtools对象返回ISO8601格式的字符串。