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 Parsing with Sample Data for a Merchant/Payment TransactionDemonstrates how to load the following JSON into a JSON object and access the values for this document: { "id":"8a829449561d9dcb01571dbee3b275b1", "paymentType":"DB", "paymentBrand":"VISA", "amount":"156.00", "currency":"EUR", "merchantTransactionId":"E8A39B31-6FA3-4014-A195-3074DF5BF7A1", "result":{ "code":"000.100.110", "description":"Request successfully processed in 'Merchant in Integrator Test Mode'" }, "resultDetails":{ "ConnectorTxID3":"12311312", "ConnectorTxID1":"717473" }, "card":{ "bin":"420000", "last4Digits":"0000", "holder":"Andreas", "expiryMonth":"12", "expiryYear":"2018" }, "risk":{ "score":"100" }, "buildNumber":"4b471ea5366e5e9c9a21392a39769f8d7b40b4e8@2016-09-08 13:31:54 +0000", "timestamp":"2016-09-12 09:33:52+0000", }
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(); // Load the JSON into the object. // Call json.Load to load from a string rather than a file... var success = json.LoadFile("qa_data/json/merchantPayment.json"); // We are assuming success.. // Get the easy stuff: console.log("id: " + json.StringOf("id")); console.log("paymentType: " + json.StringOf("paymentType")); console.log("currency: " + json.StringOf("currency")); console.log("buildNumber: " + json.StringOf("buildNumber")); // Get information that's nested within a sub-object: console.log("result: code: " + json.StringOf("result.code")); console.log("result: description: " + json.StringOf("result.description")); console.log("card: bin: " + json.StringOf("card.bin")); console.log("card: last4Digits: " + json.StringOf("card.last4Digits")); } chilkatExample(); |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.