La tarea es convertir un resultado JSON a una fecha de JavaScript con la ayuda de JavaScript. Hay algunos dos métodos que se discuten a continuación:
Enfoque 1:
- Use el método substr() para obtener la parte entera de la string.
- Utilice el método parseInt() seguido de Date() para obtener la fecha de JavaScript.
Ejemplo: Este ejemplo implementa el enfoque anterior.
<!DOCTYPE HTML> <html> <head> <title> How to convert JSON results into a date using JavaScript ? </title> </head> <body style = "text-align:center;"> <h1 style = "color:green;" > GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 15px; font-weight: bold;"> </p> <button onclick = "gfg_Run()"> click here </button> <p id = "GFG_DOWN" style = "color:green; font-size: 20px; font-weight: bold;"> </p> <script> var el_up = document.getElementById("GFG_UP"); var el_down = document.getElementById("GFG_DOWN"); var jsonDate = '/Date(1559083200000)/'; el_up.innerHTML = "Click on the button to convert" + " JSON result to JavaScript Date." + "<br>JSON Date - " + jsonDate; function gfg_Run() { var date = new Date(parseInt(jsonDate.substr(6))); el_down.innerHTML = date; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Enfoque 2:
- Use regExp para obtener la parte entera de la string.
- Utilice el método Date() para obtener la fecha de JavaScript.
Ejemplo: Este ejemplo implementa el enfoque anterior.
<!DOCTYPE HTML> <html> <head> <title> How to convert JSON results into a date using JavaScript ? </title> </head> <body style = "text-align:center;"> <h1 style = "color:green;" > GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 15px; font-weight: bold;"> </p> <button onclick = "gfg_Run()"> click here </button> <p id = "GFG_DOWN" style = "color:green; font-size: 20px; font-weight: bold;"> </p> <script> var el_up = document.getElementById("GFG_UP"); var el_down = document.getElementById("GFG_DOWN"); var jsonDate = '/Date(1559083200000)/'; el_up.innerHTML = "Click on the button to convert" + " JSON result to JavaScript Date." + "<br>JSON Date - " + jsonDate; function gfg_Run() { var date = new Date(jsonDate.match(/\d+/)[0] * 1); el_down.innerHTML = date; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA