确定Twig(或JavaScript)中的国际日期格式,以便在其他地方使用?

在Twig中可以确定国际日期格式,以便在
JavaScript中执行以下操作:

var frmt;
{% if usformat %}
    frmt = "MM/DD";
{% else %}
    frmt = "DD/MM";
{% endif %}
document.getElementById("dt_tm").value = 
some_fn(document.getElementById("inp-dt-tm").value, "{{ frmt }}/YYYY HH:mm");

some_fn在别处定义,但是采用日期/时间格式化字符串.如何实现“if usformat?”

或者可以用JavaScript实现吗?

var frmt;
if (usformat)
    frmt = "MM/DD";
else
    frmt = "DD/MM";
document.getElementById("dt_tm").value = 
some_fn(document.getElementById("inp-dt-tm").value, "{{ frmt }}/YYYY HH:mm");

用moment.js怎么样?

最佳答案 只需输出树枝值如下:

document.getElementById("dt_tm").value = 
some_fn(document.getElementById("inp-dt-tm").value, "{{ frmt }}/YYYY HH:mm");

希望这有帮助

点赞