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) JSON: Miscellaneous OperationsDemonstrates a variety of JSON API methods. This example uses the following JSON document: { "alphabet": "abcdefghijklmnopqrstuvwxyz", "sampleData" : { "pi": 3.14, "apple": "juicy", "hungry": true, "withoutValue": null, "answer": 42 } }
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() { var json = new chilkat.JsonObject(); json.EmitCompact = false; // Assume the file contains the data as shown above.. var success = json.LoadFile("qa_data/json/sample2.json"); if (success !== true) { console.log(json.LastErrorText); return; } // First navigate to the "sampleData" object: // sampleData: JsonObject var sampleData = json.ObjectOf("sampleData"); // Demonstrate BoolAt and BoolOf console.log("hungry: " + sampleData.BoolOf("hungry")); console.log("hungry: " + sampleData.BoolAt(2)); // StringOf returns the value as a string regardless of it's actual type: console.log("pi: " + sampleData.StringOf("pi")); console.log("answer: " + sampleData.StringOf("answer")); console.log("withoutValue: " + sampleData.StringOf("withoutValue")); console.log("hungry: " + sampleData.StringOf("hungry")); // Demonstrate IsNullOf / IsNullAt console.log("withoutValue is null? " + sampleData.IsNullOf("withoutValue")); console.log("withoutValue is null? " + sampleData.IsNullAt(3)); console.log("apple is null? " + sampleData.IsNullOf("apple")); console.log("apple is null? " + sampleData.IsNullAt(1)); // IntOf console.log("answer: " + sampleData.IntOf("answer")); // SetNullAt, SetNullOf // Set "pi" to null success = sampleData.SetNullAt(0); // Set "answer" to null success = sampleData.SetNullOf("answer"); // Show the changes: console.log(json.Emit()); // Restore pi and apple: success = sampleData.SetNumberAt(0,"3.14"); success = sampleData.SetNumberOf("answer","42"); // Show the changes: console.log(json.Emit()); // Add a null value named "afterApple" just after "apple" success = sampleData.AddNullAt(2,"afterApple"); // Add a boolean value just after "pi" success = sampleData.AddBoolAt(1,"afterPi",false); // Examine the changes.. console.log(json.Emit()); } chilkatExample(); |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.