将json结果转换为日期[重复]

将json结果转换为日期[重复],第1张

将json结果转换为日期[重复]

您需要从字符串提取数字,并将其传递给Date

constructor

var x = [{    "id": 1,    "start": "/Date(1238540400000)/"}, {    "id": 2,    "start": "/Date(1238626800000)/"}];var myDate = new Date(x[0].start.match(/d+/)[0] * 1);

这些部分是:

x[0].start          - get the string from the JSONx[0].start.match(/d+/)[0]     - extract the numeric partx[0].start.match(/d+/)[0] * 1 - convert it to a numeric typenew Date(x[0].start.match(/d+/)[0] * 1)) - Create a date object


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5620880.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存