Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Node.js) Parse a Microsoft JSON Date (MS AJAX Date)Demonstrates how to parse a Microsoft JSON Date, also known as an MSAJAX date. Note: This example requires Chilkat v9.5.0.76 or greater.
var os = require('os'); if (os.platform() == 'win32') { if (os.arch() == 'ia32') { var chilkat = require('@chilkat/ck-node21-win-ia32'); } else { var chilkat = require('@chilkat/ck-node21-win64'); } } else if (os.platform() == 'linux') { if (os.arch() == 'arm') { var chilkat = require('@chilkat/ck-node21-arm'); } else if (os.arch() == 'x86') { var chilkat = require('@chilkat/ck-node21-linux32'); } else { var chilkat = require('@chilkat/ck-node21-linux64'); } } else if (os.platform() == 'darwin') { if (os.arch() == 'arm64') { var chilkat = require('@chilkat/ck-node21-mac-m1'); } else { var chilkat = require('@chilkat/ck-node21-macosx'); } } function chilkatExample() { // Note: This example requires Chilkat v9.5.0.76 or greater. // The ability to automatically parse Microsoft JSON Dates (AJAX Dates) was added in v9.5.0.76 var json = new chilkat.JsonObject(); var success = json.Load("{ \"AchievementDate\":\"/Date(1540229468330-0500)/\"}"); var dt = new chilkat.CkDateTime(); success = json.DateOf("AchievementDate",dt); if (success !== true) { console.log("Unable to parse a date/time."); return; } // Show the date in different formats: var bLocal = true; console.log("RFC822: " + dt.GetAsRfc822(bLocal)); console.log("Timestamp: " + dt.GetAsTimestamp(bLocal)); console.log("YYYY-MM-DD: " + dt.GetAsIso8601("YYYY-MM-DD",bLocal)); // Get integer values for year, month, day, etc. // dtObj: DtObj var dtObj = dt.GetDtObj(bLocal); console.log("year: " + dtObj.Year); console.log("month: " + dtObj.Month); console.log("day: " + dtObj.Day); console.log("hour: " + dtObj.Hour); console.log("minute: " + dtObj.Minute); console.log("seconds: " + dtObj.Second); // Sample output: // RFC822: Mon, 22 Oct 2018 17:31:08 -0500 // Timestamp: 2018-10-22T17:31:08-05:00 // YYYY-MM-DD: 2018-10-22 // year: 2018 // month: 10 // day: 22 // hour: 17 // minute: 31 // seconds: 8 } chilkatExample(); |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.