Use Cases for Server Side Variables
Read and Write Local Storage Properties
async function(){
var storage_value = await this.storage.read("storage_name");
this.storage.write("storage_name", "updated value", Date.now()+94608000000);
}Server-Side to Client-Side variable references
this.getFrontendVariable("<ID of client-side variable>");
Last updated
Was this helpful?