如何在mongoDB中保存dateTime

时间:2014-03-28 17:53:43

标签: javascript json mongodb hottowel

我是mongoDB的新手,我正在使用c#,c#drive + mongoDB开发一个hottowel项目,我在保存dateTime和时间方面遇到了很大的问题。

mongoHQ实际上是什么:

   {
      creator: "yobro",
      expirationDate: {
        DateTime: ISODate("1-01-01T00:00:00Z"),
        Ticks: 0
      },
      institution: null,
      adjustedStartTime: {
        DateTime: ISODate("1-01-01T00:00:00Z"),
        Ticks: 0
      }
   }

我的javascript:

   var jsonModel ={
      creator: "yobro",
      expirationDate: {
        DateTime: moment(2014-03-27).toISOString(),
        Ticks: 0
      },
      institution: null,
      adjustedStartTime: {
        DateTime: moment(2014-02-21).toISOString(),
        Ticks: 0
      }
   }

C#:

   this.startTime = new DateTime();
   this.adjustedStartTime = new DateTime();

我发布此json 创建者已保存,但不是日期,我该如何解决?

0 个答案:

没有答案