问题标签 [isodate]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - Java 中 ISO-8601 日期时间到秒数的字符串
如何使用 Java将 ISO-8601 日期时间字符串(例如:)转换2012-05-31T13:48:04Z
为秒数( )?10 digit integer
javascript - 将 ISO 日期时间转换为毫秒
我有一个 ISODateTime 格式:
如何在 AngularJS 中将其转换为毫秒。
我使用 DateTime.Parse() => 它适用于 chrome 但在 ios 上失败。还有其他实现相同的方法吗?
我的主要目的是找出当前时间和这次之间的差异(以分钟为单位):
其中项目 ['myDate'] = 2013-11-21T20:58:03+0000
mongodb - MongoDB 按日期以字符串格式聚合不起作用
我有一个带有日期字段“localHitDate”的 mongodb 集合,它是一个字符串属性,我想在这个日期进行聚合。所以,我必须将我的日期字符串转换为 BSON 日期类型,但它不起作用:
我有这个错误: ReferenceError: localHitDate is not defined (shell):7
我试过 ISODate($localHitDate) 但我仍然有一个错误。
你知道怎么做吗?
谢谢
php - 为什么扩展 MongoDate (php) 的类不存储为 ISODate?
我有一个类,它只MongoDate
用一个构造函数和一个重载的__toString()
.
此类的实例构造良好,并且在存储之前具有正确的值。
此类存储在 MongoDB 中时具有以下形式:
而不是我在使用 MongoDate 存储值时拥有的这个:
存储值的代码,在两种情况下都使用,其中$date
是 aMyClass
或 a MongoDate
:
为什么从 MongoDate 继承的类没有存储为 MongoDate 是(作为 ISODate 对象),我该如何解决?
node.js - MongoDB + nodejs:如何查询 ISODate 字段?
我正在使用 nodejs 和 node-mongodb-native 驱动程序(http://mongodb.github.io/node-mongodb-native/)。
我有一个日期属性存储为ISODate
类型的文档。
通过nodejs,我正在使用这个查询:
它什么也不返回。为了使其工作,我需要执行以下操作:
但ISODate
在我的 nodejs 代码中无法识别。
那么如何通过我的 nodejs 程序对 mongo 日期字段进行查询呢?
谢谢
java - mongodb ISODate问题
我正在使用 java(IDE 是 eclipse)在 mongodb 上进行查询。下面是我的java代码:
类型为 ISODate 且值为 的 createDate 出现问题ISODate("2013-10-21T01:34:04.808Z")
,但println
我的代码的结果是'Mon Oct 21 **09**:34:04 CST 2013'
,小时已从 01 更改为 09。我不知道发生了什么!
有人可以帮忙吗?
angularjs - 如何检查angularjs中的日期时间?
如何使用Angularjs检查是否在同一天创建posts[0]
?posts[1]
javascript - Issue comparing ISODates
I have an array like this:
I want to sort the items by date. The date
field is a stringified ISODate
. This array is sorting this way:
The issue is that the array is not sorted as supposed.
Pusing the dates in o
array
o
contains:
And there are other weird things, as you see. How can this issue be solved? On the server side these documents come from a MongoDB database, but they are sorted in the same way.
I created a JSFIDDLE that demonstrates this issue. Which is the problem?
python - python将java日历解析为isodate
我有这样的数据。
这只是 1 个属性的表示。像这样,我还有 5 个其他属性。LastModified、创建等
我想将其导出为 ISO 日期格式 yyyy-mm-dd hh:mi:ss。这是这样做的正确方法吗?
perl - 如何让 Perl Mongo find() 返回 ts 小于 5 天的记录?
我有一个名为 Clickstream 的 MongoDB 集合,并希望在过去 5 天内找到与特定 pubCode 匹配且带有时间戳的所有文档。时间戳位于名为 ts 的字段中,Mongo 数据类型为 Date。
从 Mongo shell 我可以执行以下操作:-
但是,我似乎不能在 Perl 中做同样的事情(使用今天的日期,而不是硬编码的日期和时间)。如果我这样做:-
我收到以下错误消息:-
在 recalcPubPop.pm 第 25 行调用了未定义的子例程 &main::ISODate。
如果我像这样删除对 ISOData() 的引用
我没有退回任何文件。
有关如何使此 find() 返回 ts 小于 5 天的记录的任何建议?谢谢!