ai.util
Funzioni
Metodo | Parametri | Resi | Descrizione |
|---|---|---|---|
apply( obj, config ) |
| Oggetto | Copia tutte le proprietà di config in obj e restituisce obj. |
decodeHtml( encodedHtml ) disponibile nel 2018.3 |
| String | Restituisce una stringa in formato HTML non elaborato. 'Ciao <b> [there] >words<!' |
decodeUrl( encodedUrl ) disponibile nel 2018.3 |
| String | Restituisce una stringa con un URL non elaborato. https://www.example.com/fings/?id=123&more=words#hash |
decodeBase64( encodedBase64 ) disponibile nel 2018.3 |
Una stringa codificata come Base64. E.g. dGV4dA== | String | Restituisce una stringa Base64 decodificata. Testo |
encodeHtml( rawHtml ) disponibile nel 2018.3 |
| String | Restituisce una stringa con caratteri riservati convertiti da utilizzare nei valori letterali HTML. Salve <b> [there] >words<! |
encodeUrl( rawUrl ) disponibile nel 2018.3 |
| String | Restituisce un URL non elaborato come HTML codificato. |
encodeBase64( rawBase64 ) disponibile nel 2018.3 |
| String | codifica il testo come Base64. dGV4dA== |
format ( formatString, arg1, arg2....argN) |
| String | Utilizzato per definire una stringa in token e passare un numero arbitrario di argomenti per sostituire i token. Ogni token deve essere univoco e deve essere incrementato nel formato {0}, {1} e così via. |
isDate( value ) |
| Booleano | Restituisce true se il valore passato è un oggetto Data JavaScript. |
isUndefined( value ) |
| Booleano | Restituisce true se il valore passato è "undefined". |
isDefined( value ) |
| Booleano | Restituisce true se il valore passato non è "undefined". |
isArray( value ) |
| Booleano | Restituisce true se il valore passato è una matrice JavaScript, in caso contrario false. |
isString( value ) |
| Booleano | Restituisce true se il valore passato è una stringa. |
isNumber( value ) |
| Booleano | Restituisce true se il valore passato è un numero ed è finito. |
isBoolean( value ) |
| Booleano | Restituisce vero se il valore passato è vero o falso. |
toArray( a, i, j ) | Matrice | ||
isPrimitive( value ) |
| Booleano | Restituisce true se il valore passato è una stringa, un numero o un valore booleano. |
Esempi
//Example for ai.util.apply var sourceObj = {department:"Engineering"}; var destObj={}; ai.util.apply(destObj,sourceObj); ai.log.logInfo("Source Properties applied to Destination object: "+JSON.stringify(destObj)); // Source Properties applied to destination object: {department:Engineering} //Example for ai.util.decodeHtml var encodedHtml = "Hello <b> [there] >words<!"; var decodedvalue=ai.util.decodeHtml(encodedHtml); ai.log.logInfo("Decoded HTML is " +decodedvalue); // Decoded HTML is Hello [there] >words //Example for ai.util.encodeHtml var rawHtml = "Hello <b> [there] >words<!"; var encodedvalue=ai.util.encodeHtml(rawHtml); ai.log.logInfo("Encoded HTML is " +encodedvalue); // Encoded HTML is Hello <b> [there] >words<! //Example for ai.util.decodeBase64 var encodedBase64 = "VGhpcyBpcyBhIHNhbXBsZSB0ZXh0IGZvciBlbmNvZGluZw=="; var decodedbasevalue= ai.util.decodeBase64(encodedBase64); ai.log.logInfo("Decoded base64 is: "+decodedbasevalue); //Decoded base64 is:"This is a sample text for encoding" //Example for ai.util.encodeBase64 var rawBase64 = "This is a sample text for encoding"; var encodedbasevalue= ai.util.encodeBase64(rawBase64, ""); ai.log.logInfo("Encoded base64 is: "+encodedbasevalue); //Encoded base64 is:VGhpcyBpcyBhIHNhbXBsZSB0ZXh0IGZvciBlbmNvZGluZw== //Example for ai.util.encodeUrl var rawUrl = "https://docs.postman-echo.com/"; var encodedUrl=ai.util.encodeUrl(rawUrl); ai.log.logInfo("Encoded URL is: "+encodedUrl); //Encoded URL is: https%3a%2f%2fdocs.postman-echo.com%2f //Example for ai.util.decodeUrl var encodedUrl = "https%3a%2f%2fdocs.postman-echo.com%2f"; var decodedUrl=ai.util.decodeUrl(encodedUrl); ai.log.logInfo("Decoded URL is: "+decodedUrl); //Decoded URL is: https://docs.postman-echo.com/ //Example for ai.util.format var formatted=ai.util.format('How ar{0} you{1}',"e","?"); ai.log.logInfo("Formatted String is: "+formatted); //How are you? //Example for ai.util.isDate() var d = new Date(); var verifyIfDate=ai.util.isDate(d); ai.log.logInfo("Provided value is: "+verifyIfDate); //Provided value is: true //Example for ai.util.isUndefined var sampleValue; var verifyIfUndefined=ai.util.isUndefined(sampleValue); if (verifyIfUndefined) { ai.log.logInfo("Value is undefined"); } else { ai.log.logInfo("Value is defined"); } //Value is undefined //Example for ai.util.isDefined var sampleValue=6; var verifyIfDefined=ai.util.isDefined(sampleValue); ai.log.logInfo("verifyIfDefined: "+verifyIfDefined) if (verifyIfDefined) { ai.log.logInfo("Value is defined"); } else { ai.log.logInfo("Value is undefined"); } //Value is defined //Example for ai.util.isArray var sampleValue=["a","b"]; var verifyIfArray=ai.util.isArray(sampleValue); if (verifyIfArray) { ai.log.logInfo("Is is an Array"); } else { ai.log.logInfo("Not an Array"); } //It is an array //Example for ai.util.isString var sampleValue="123"; var verifyIfString=ai.util.isString(sampleValue); if (verifyIfString) { ai.log.logInfo("Is is a string"); } else { ai.log.logInfo("Not a string"); } //Example for ai.util.isNumber var sampleValue = {firstName:"Jon", lastName:"Doe"}; var verifyIfNumber=ai.util.isNumber(sampleValue); if (verifyIfNumber) { ai.log.logInfo("Is is a number"); } else { ai.log.logInfo("Not a number. Provided value is of type: "+typeof(sampleValue)); } //Not a number. Provided value is of type: object //Example for ai.util.isBoolean var sampleValue = true; var verifyIfBoolean=ai.util.isBoolean(sampleValue); if (verifyIfBoolean) { ai.log.logInfo("Value is Boolean"); } else { ai.log.logInfo("Not a Boolean. Provided value is of type: "+typeof(sampleValue)); } //Value is Boolean //Example for ai.util.isPrimitive var sampleValue = {firstName:"Jon", lastName:"Doe"}; var verifyIfPrimitive=ai.util.isPrimitive(sampleValue); if (verifyIfPrimitive) { ai.log.logInfo("Provided value is a Primitive Data Type"); } else { ai.log.logInfo("Provided value is not primitive: "+typeof(sampleValue)); } return true;