日期比较逻辑/液体模板过滤器

时间:2017-11-30 15:48:32

标签: shopify liquid liquid-layout

我正在尝试创建一个“预购”类似的机制,其中Shopify Liquid Template的某些元素仅显示当前日期是否大于或小于Metafield中指定的日期。

截至目前,这是我所拥有的,包括逻辑:

<!-- Check Today is correct -->
<p>Today: {{'now' | date: '%d-%m-%Y' }}</p>

<!-- This is the Metafield Output as a String -->
<p>Release Date: {{ product.metafields.Release-Date.preOrder }}</p>

<!-- Assign Variable "today_date" to the current date -->
{% assign today_date = 'now' | date: '%d-%m-%Y' %}
<!-- Assign Variable "pre_date" to the string of the metafield -->
{% assign pre_date = product.metafields.Release-Date.preOrder %}
{% if today_date > pre_date %}
  Today's date is greater than PreOrder Date
{% else %}
  Today's date is not greater than PreOrder Date
{% endif %}

但是,即使我将PreOrder日期设置为01-01-2018,它仍会显示“大于”。

如何正确查询?

1 个答案:

答案 0 :(得分:6)

您不能以这种方式比较字符串。 (日期是字符串。)

您必须使用%s日期过滤器。

所以它会变成:

{% assign today_date = 'now' | date: '%s' %}
{% assign pre_date = product.metafields.Release-Date.preOrder | date: '%s' %}
{% if today_date > pre_date %}

我们使用%s因为它将返回当前的unix时间戳编号而不是字符串。这样您就可以比较不同的时间戳。