2020年7月3日

falsk 获取当前日期:
import datetime
import time
 
# 获取当前时间, 其中中包含了year, month, hour, 需要import datetime
today = datetime.date.today()
print(today)
print(today.year)
print(today.month)
print(today.day)
'''
>>>2017-01-01
>>>2017
>>>1
>>>1
'''
 
 
# 获得明天, 其他依次类推
tomorrow = today + datetime.timedelta(days=1)
print(tomorrow)
'''
>>>2017-01-02
'''
 
 
# 时间相减,相加同理
now = datetime.timedelta(days=0, hours=0, minutes=3, seconds=50);
pre = datetime.timedelta(days=0, hours=0, minutes=1, seconds=10);
 
duration_sec = (now - pre).seconds
duration_day = (now - pre).days
print(type(duration_sec))
print(type(now - pre))
print(duration_sec)
print(duration_day)
'''
>>><class 'int'>
>>><class 'datetime.timedelta'>
>>>160
>>>0
'''
 
 
# 使用time.strftime(format, p_tuple)获取当前时间,需要import time
now = time.strftime("%H:%M:%S")
print(now)
'''
>>>23:49:34
'''
 
# 使用datetime.now()
now = datetime.datetime.now()
print(now)
print(now.year)
print(now.month)
print(now.day)
print(now.hour)
print(now.minute)
print(now.second)
print(now.microsecond)
'''
>>>2017-01-01 23:49:34.789292
>>>2017
>>>1
>>>1
>>>23
>>>49
>>>34
>>>789292
'''
vue 获取当前日期
 created: function() {
    var aData = new Date();
    console.log(aData) //Wed Aug 21 2019 10:00:58 GMT+0800 (中国标准时间)
    
    this.value =
      aData.getFullYear() + "-" + (aData.getMonth() + 1) + "-" + aData.getDate();
    console.log(this.value) //2019-8-20 
  },
  var data= new Date();
  var month =data.getMonth() < 9 ? "0" + (data.getMonth() + 1) : data.getMonth() + 1;
  var date = data.getDate() <= 9 ? "0" + data.getDate() : data.getDate();
  this.value = data.getFullYear() + "-" + month + "-" + date;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值