Chilkat Examples

ChilkatHOMEAndroid™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi DLLGoJavaJavaScriptNode.jsObjective-CPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwiftTclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

VBScript Examples
Web API Categories

AI
ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Box
CAdES
CSR
CSV
Cert Store
Certificates
Cloud Signature CSC
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP
HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
JavaScript
MHT / HTML Email
MIME
Markdown
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
Regular Expressions
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
Secrets
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
X
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(VBScript) Call a JavaScript Function Passing an Object Argument

See more JavaScript Examples
Demonstrates how to call a JavaScript function with an argument that is an object.

Note: This example requires Chilkat v11.4.0 or greater.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)

success = 0

' This is the JavaScript function we'll call:

' function describeCar(car) {
' 	console.log(`This is a ${car.year} ${car.make} ${car.model}.`);
' }

set sbScript = CreateObject("Chilkat.StringBuilder")
success = sbScript.Append("function describeCar(car) { console.log(`This is a ${car.year} ${car.make} ${car.model}.`); }")

set js = CreateObject("Chilkat.Js")

set result = CreateObject("Chilkat.JsonObject")
result.EmitCompact = 0

' Call Eval to add the function to the context's global object
success = js.Eval(sbScript,result)
If (success = 0) Then
    ' Examine the result for an exception.
    outFile.WriteLine(result.Emit())

    ' Also examine the LastErrorText.
    outFile.WriteLine(js.LastErrorText)
    WScript.Quit
End If

' ------------------------------------------------------------------------------
' Call the function describeCar(car)

set funcCall = CreateObject("Chilkat.JsonObject")
funcCall.EmitCompact = 0

' Create JSON specifying the function name and arguments
' In this case, there is only 1 argument, and it is an object.

' {
'   "name": "describeCar",
'   "args": [
'     {
'       "make": "Toyota",
'       "model": "Corolla",
'       "year": 2022
'     }
'   ]
' }

success = funcCall.UpdateString("name","describeCar")

' Create the JSON object that is the argument.
set arg = CreateObject("Chilkat.JsonObject")
success = arg.UpdateString("make","Toyota")
success = arg.UpdateString("model","Corolla")
success = arg.UpdateInt("year",2022)

' Create the arguments array.
set argsArray = CreateObject("Chilkat.JsonArray")
success = argsArray.AddObjectCopyAt(0,arg)

' Add the "args" array to the funcCall.
success = funcCall.AppendArrayCopy("args",argsArray)

outFile.WriteLine(funcCall.Emit())

success = js.CallFunction(funcCall,result)
If (success = 0) Then
    ' Examine the result for an exception.
    outFile.WriteLine(result.Emit())

    ' Also examine the LastErrorText.
    outFile.WriteLine(js.LastErrorText)
    WScript.Quit
End If

outFile.WriteLine(result.Emit())

' The describeCar JavaScript function returns nothing. 
' Therefore, the result is "undefined".

' {
'   "type": "undefined",
'   "value": "undefined"
' }

' However, the function emitted text to the console.

set sbOut = CreateObject("Chilkat.StringBuilder")
js.ConsoleOutputSb sbOut
outFile.WriteLine(sbOut.GetAsString())

' Output:
' This is a 2022 Toyota Corolla.

' -----------------------------------------------------------
' Note: If the object argument is simple, this is an alternative
' and simpler way of creating the funcCall:

funcCall.Clear 
success = funcCall.UpdateString("name","describeCar")
success = funcCall.UpdateString("args[0].make","Toyota")
success = funcCall.UpdateString("args[0].model","Corolla")
success = funcCall.UpdateInt("args[0].year",2022)
outFile.WriteLine(funcCall.Emit())

outFile.Close

 

© 2000-2026 Chilkat Software, Inc. All Rights Reserved.