真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

python中時(shí)間中間鍵的示例分析-創(chuàng)新互聯(lián)

這篇文章主要介紹python中時(shí)間中間鍵的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)公司憑借專業(yè)的設(shè)計(jì)團(tuán)隊(duì)扎實(shí)的技術(shù)支持、優(yōu)質(zhì)高效的服務(wù)意識(shí)和豐厚的資源優(yōu)勢(shì),提供專業(yè)的網(wǎng)站策劃、做網(wǎng)站、網(wǎng)站制作、網(wǎng)站優(yōu)化、軟件開發(fā)、網(wǎng)站改版等服務(wù),在成都10余年的網(wǎng)站建設(shè)設(shè)計(jì)經(jīng)驗(yàn),為成都1000多家中小型企業(yè)策劃設(shè)計(jì)了網(wǎng)站。

時(shí)間中間鍵的整理

一下內(nèi)容是對(duì)數(shù)據(jù)接口返回的時(shí)間節(jié)點(diǎn)處理方法很管用的哦

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
 name: 'interval'
})
export class IntervalPipe implements PipeTransform {

 transform(value: any): any {
  let date = new Date(value)
  if (!date) {
   return ''
  }
  let now = new Date()
  let year = now.getFullYear() - date.getFullYear()
  if (year) {
   return year + '年前'
  }
  let month = now.getMonth() - date.getMonth()
  if (month) {
   return month + '月前'
  }
  let day = now.getDate() - date.getDate()
  if (day) {
   return day + '天前'
  }
  let hour = now.getHours() - date.getHours()
  if (hour) {
   return hour + '小時(shí)前'
  }
  let min = now.getMinutes() - date.getMinutes()
  if (min) {
   return min + '分鐘前'
  }

  return '剛剛';
 }

}

以上是“python中時(shí)間中間鍵的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)頁標(biāo)題:python中時(shí)間中間鍵的示例分析-創(chuàng)新互聯(lián)
本文來源:http://weahome.cn/article/dpcgpd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部