admin管理员组文章数量:1342526
I have the following field validator object:
{ type:'date', 'min':new Date() }
I was hoping that I could store new Date()
as an expression in JSON and it would be executed when it's parsed
I have the following field validator object:
{ type:'date', 'min':new Date() }
I was hoping that I could store new Date()
as an expression in JSON and it would be executed when it's parsed
4 Answers
Reset to default 3save the timestamp:
{ type:'date', 'min':(new Date()).getTime() }
then you read it back:
var result = JSON.parse('{ "type":"date", "min":1234567 }');
result.date = new Date(result.min);
Note: the server you use to serialize it and the server you use to deserialize it has to run in the same timezone
You can't store the plete Date object in a JSON string. But you can try to store a text representing him :
As a string :
{ type:'date', 'min':(new Date()).toString() }
As a timestamp :
{ type:'date', 'min':(new Date()).getTime() }
As an ISO string :
{ type:'date', 'min':(new Date()).toJSON() }
JSON does not support the Date datatype (it only supports string number, object, array, true, false, and null). You need to convert it to a string instead.
For example, ISO time:
var json = JSON.stringify( { type:'date', 'min':new Date().toISOString() } );
document.body.appendChild(document.createTextNode(json));
The date object, actually has a toJSON
method, which you might find useful. However I suggest using getTime
as it returns a timestamp, which is usually more flexible.
本文标签: javascriptStore new Date () in JSON objectStack Overflow
版权声明:本文标题:javascript - Store `new Date ()` in JSON object - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743692115a2522883.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论