我有amp-state
当前日,月和年。
我想找出工作日。
常规' javascript这可以使用Date.getDay()
完成。
这在AMP中似乎不起作用:
<amp-state id="currentDate">
<script type="application/json">
{
"day": 6,
"month": 6,
"year": 2006
}
</script>
</amp-state>
<span [text]="Date(currentDate.year, currentDate.month, currentDate.day).getDay()">...</span>
结果是:
amp-bind: Expression evaluation error in "Date(currentDate.year, currentDate.month, currentDate.day).getDay()". Date is not a supported function.
是否有实现这一目标的方法(最好不使用amp-iframe
)?