What is the “right” JSON date format?

前端 未结 16 1353
执念已碎
执念已碎 2020-11-21 15:14

I\'ve seen so many different standards for the JSON date format:

\"\\\"\\\\/Date(1335205592410)\\\\/\\\"\"         .NET JavaScriptSerializer
\"\\\"\\\\/Date(         


        
16条回答
  •  迷失自我
    2020-11-21 16:04

    In Sharepoint 2013, getting data in JSON there is no format to convert date into date only format, because in that date should be in ISO format

    yourDate.substring(0,10)
    

    This may be helpful for you

提交回复
热议问题