This article needs an editorial review. How you can help.
El mètode toJSON()
retorna una representació de tipus cadena de l'objecte Date
.
Sintaxi
dateObj.toJSON()
Descripció
Les instàncies Date
referencien a un punt concret en el temps. La crida toJSON()
retorna una cadena (usant toISOString()
) en representació del valor de l'objecte Date
. Generalment aquest mètode s'utilitza, per defecte, per serialitzar eficaçment objectes Date
durant la serialització JSON.
Exemples
Utilitzar toJSON()
var jsonDate = (new Date()).toJSON(); var backToDate = new Date(jsonDate); console.log(jsonDate); //2015-10-26T07:46:36.611Z
Especificacions
Especificació | Estat | Comentaris |
---|---|---|
ECMAScript 5.1 (ECMA-262) The definition of 'Date.prototype.toJSON' in that specification. |
Standard | Definició inicial. Implementat en JavaScript 1.8.5. |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Date.prototype.toJSON' in that specification. |
Standard |
Compatibilitat amb navegadors
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Característica | Android | Chrome per Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suport bàsic | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |