"ZonedDateTime not defined error" 是错误吗?

is "ZonedDateTime not defined error" a bug?

当尝试从纪元开始从毫秒创建一个新的 DateTime 对象时,我调用:

var dateTime = new ZonedDateTime(searchRegion.locality.centroid, [millisSinceEpoch]};

我收到一个错误:ReferenceError: "ZonedDateTime" 未定义。

这可能是什么原因?这是一个错误吗?

您似乎错过了 require 这一步。

  var dates = require('dates')
  var t = new dates.ZonedDateTime(searchRegion.locality.centroid, [millisSinceEpoch]);

仅供参考,您的代码末尾有错别字,应该是 ) 而不是 }

请尝试,如果有效请告诉我们!