使用Shopify的Liquid将字符串转换为时间戳和特定格式

时间:2019-10-18 10:30:18

标签: templates shopify liquid

在液体模板中

input "2019-06-11T08:54:28Z" {{ article.published_at }}   
-> is outputing "6/11/2019 8:54:28 AM"

我想要的是格式化日期。在(yy / mm / dd hh:mm)中,我已经尝试过了

{{ article.published_at | date: "%Y/%m/%d %H:%M" }} and 
{{ "2019-06-11T08:54:28Z" | date: "%Y/%m/%d %H:%M" }}

但是这没用,我不断收到“ 2019-06-11T08:54:28Z” 我错过了什么吗?

0 个答案:

没有答案