在液体模板中
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” 我错过了什么吗?