Parsing the C# datetime to javascript datetime

后端 未结 2 1293
[愿得一人]
[愿得一人] 2021-02-07 05:15

I know that my question is similar to others but I didn\'t found any solution to my problem.

I have a C# DateTime property

 public DateTime MyDate { get;         


        
2条回答
  •  隐瞒了意图╮
    2021-02-07 05:20

    new Date(object.MyDate); should work.

    EDIT: var date = new Date(parseInt(object.MyDate.substr(6)));

    I've also seen this method:

    var milli = "/Date(1245398693390)/".replace(/\/Date\((-?\d+)\)\//, '$1');
    var d = new Date(parseInt(milli));
    

提交回复
热议问题