Shopify (liquid): Find number of days between two dates

随声附和 提交于 2019-12-11 13:31:16

问题


I am new to Shopify and .liquid files syntax.

I can get two dates currently:

{% assign product_created_date = product.created_at | date: "%a, %b %d, %y" %}
{% assign current_date = 'now' | date: "%a, %b %d, %y" %}

which gives me the current date and also the date when the product was created.

I want to show the users in the theme, the date since the product was posted.

I've read some liquid filters and did some search but couldn't find out exactly how I would find the days since product was created.

Can we calculate it using purely liquid syntax?


回答1:


You can transform your dates to timestamps representing Number of seconds since 1970-01-01 00:00:00 UTC

{% comment %} convert our dates to Number of seconds 
              since 1970-01-01 00:00:00 UTC {% endcomment %}
{% assign dateStart = product.created_at | date: '%s' %}
{% assign nowTimestamp = 'now' | date: '%s' %}

{% comment %} difference in seconds {% endcomment %}
{% assign diffSeconds = nowTimestamp | minus: dateStart %}

{% comment %} difference in days {% endcomment %}
{% assign diffDays = diffSeconds | divided_by: 3600 | divided_by: 24 %}

<p>difference in days = {{ diffDays }}</p>


来源:https://stackoverflow.com/questions/37340705/shopify-liquid-find-number-of-days-between-two-dates

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!