Variables are essential building blocks in Twidget that allow you to store and manipulate data dynamically within your no-code applications. They enable you to create flexible and interactive applications by holding values that can be changed and referenced throughout your workflow.
-
To create a new variable in Twidget, you can use the Create Variable command. This will allow you to define a new variable with an initial value that you can later use and manipulate in your workflow.
Open the Twidget Platform:
Navigate to your Function, endpoint or event where you want to create the variable.
Select the Create Variable Command:
In your Add commands sidebar, find and select the Create Variable command.
Define the Variable Name:
Enter a unique name for your variable. This name will be used to reference the variable throughout your workflow.
Set the Initial Value:
Provide an initial value for your variable. This can be a number, text, boolean, or other types of data supported by Twidget.
Confirm and Create:
Confirm your settings and create the variable. The new variable will now be available for use in your builder.
After a variable has been created, you may need to update its value as your application runs. Twidget provides the Edit Existing Variable command to modify the value of an existing variable.
Navigate to the Workflow Editor:
Open the Add commands sidebar where your variable is located.
Select the Edit Existing Variable Command:
Choose the Edit Existing Variable command from the available options.
Choose the Variable to Edit:
Enter the variable you wish to edit
Update the Value:
Enter the new value you want to assign to the variable. This value can be dynamically calculated or statically defined based on your needs.
Apply Changes:
Confirm your changes. The variable's value will be updated and can be used in subsequent steps of your builder.
Naming Conventions: Use clear and descriptive names for your variables to make your workflows easier to understand.
Initial Value: Always set a relevant initial value for your variables to avoid unexpected behavior.
Type Consistency: Ensure that values assigned to a variable are of consistent types to prevent errors during execution.
Local Storage
Twidget provides a set of local storage commands that enable interaction with the browser’s `localStorage` API through a no-code interface. These commands are useful for storing, retrieving, and managing key-value data persistently within the current domain context. Purpose. These commands abstract ...
Math
Twidget offers a variety of commands to manipulate numbers. Below are the math commands available, along with their descriptions, inputs, and outputs. Sum. Description: Adds together a list of numbers and returns the sum. - Inputs: - `numbers`: A list of numbers to be added together. - Output: A sin...
Send External HTTP Request
Using Twidget, you can send external HTTP requests effortlessly. This functionality allows you to communicate with external servers or APIs. Below, you will find the necessary parameters and structure to set up an HTTP request. Parameters. - URL: The endpoint to which the request will be sent. - Met...
Session Storage
Twidget includes a suite of session storage commands that enable no-code interaction with the browser’s `sessionStorage` API. These tools allow temporary storage of key-value data for the current page session. Purpose. Session storage commands allow developers to manage transient data tied to a sing...
Database
Twidget offers many commands to manage data in your database. Below is a list of the available commands and their functionalities: Get Data. Retrieve an entry from a table. Get Multiple Data. Retrieve multiple entries from a table. Save Data. Save an object to a database table. Save Multiple Data. S...