Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

模板过滤器 - time


示例

从日期对象中返回时间

<h1>{{ mydate|time }}</h1>
运行示例 »

定义和用法

The time 过滤器格式化并从 datetime 对象中返回时间。

您可以使用以下格式字符指定格式

g 小时 (1-12)
G 小时 (0-23)
h 小时 (01-12)
H 小时 (00-23)
i 分钟 (00-59)
s 秒 (00-59)
u 微秒 (000000-999999)
a am/pm 后缀 (a.m. 或 p.m.)
A AM/PM 后缀 (A.M. 或 P.M.)
f 时间,小时和分钟,但如果分钟为 0 则省略分钟
P 与 f 相同,但还包括 a.m. 或 p.m. 以及
如果时间正好是“12:00 a.m.”,则返回“午夜”。
如果时间正好是“12:00 p.m.”,则返回“中午”。

语法

{{ datetime|time:"format" }}

模板过滤器通过使用管道 | 字符后跟过滤器的名称来定义。

参数通过使用冒号 : 字符后跟参数值来定义。


参数

描述
format 可选。您希望以何种格式返回时间。默认值为 TIME_FORMAT,这将与“H:i”相同。

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.