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
(Delphi DLL) Build JSON with Mixture of Arrays and ObjectsAnother example showing how to build JSON containing a mixture of arrays and objects.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, JsonObject; ... procedure TForm1.Button1Click(Sender: TObject); var json: HCkJsonObject; begin // We want to build the following JSON: // { // "accountEnabled": true, // "assignedLicenses": [ // { // "disabledPlans": [ "bea13e0c-3828-4daa-a392-28af7ff61a0f" ], // "skuId": "skuId-value" // } // ], // "assignedPlans": [ // { // "assignedDateTime": "datetime-value", // "capabilityStatus": "capabilityStatus-value", // "service": "service-value", // "servicePlanId": "bea13e0c-3828-4daa-a392-28af7ff61a0f" // } // ], // "businessPhones": [ // "businessPhones-value" // ], // "city": "city-value", // "companyName": "companyName-value" // } json := CkJsonObject_Create(); CkJsonObject_UpdateBool(json,'accountEnabled',True); CkJsonObject_putI(json,0); CkJsonObject_UpdateString(json,'assignedLicenses[i].disabledPlans[0]','bea13e0c-3828-4daa-a392-28af7ff61a0f'); CkJsonObject_UpdateString(json,'assignedLicenses[i].skuId','skuId-value'); CkJsonObject_UpdateString(json,'assignedPlans[i].assignedDateTime','datetime-value'); CkJsonObject_UpdateString(json,'assignedPlans[i].capabilityStatus','capabilityStatus-value'); CkJsonObject_UpdateString(json,'assignedPlans[i].service','service-value'); CkJsonObject_UpdateString(json,'assignedPlans[i].servicePlanId','bea13e0c-3828-4daa-a392-28af7ff61a0f'); CkJsonObject_UpdateString(json,'businessPhones[i]','businessPhones-value'); CkJsonObject_UpdateString(json,'city','city-value'); CkJsonObject_UpdateString(json,'companyName','companyName-value'); CkJsonObject_putEmitCompact(json,False); Memo1.Lines.Add(CkJsonObject__emit(json)); // Output: // { // "accountEnabled": true, // "assignedLicenses": [ // { // "disabledPlans": [ // "bea13e0c-3828-4daa-a392-28af7ff61a0f" // ], // "skuId": "skuId-value" // } // ], // "assignedPlans": [ // { // "assignedDateTime": "datetime-value", // "capabilityStatus": "capabilityStatus-value", // "service": "service-value", // "servicePlanId": "bea13e0c-3828-4daa-a392-28af7ff61a0f" // } // ], // "businessPhones": [ // "businessPhones-value" // ], // "city": "city-value", // "companyName": "companyName-value" // } CkJsonObject_Dispose(json); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.