Tools, FAQ, Tutorials:
What Is JS Scripting Language
What is Business Network JS Scripting Language?
✍: FYIcenter.com
Business Network JS Scripting Language is the standard JavaScript language
to define business logics on how each transaction is processed.
JavaScript source code can be stored in a single or multiple files with the *.js file extension.
Each JavaScript source code file should contrain set of function statement blocks.
/* function to process a specific type of transactions
* defined in a business network model file.
* @transaction
*/
function ... {
... JavaScript statements ...
}
...
/* function to perform a specfic task to support other functions.
*/
function ... {
... JavaScript statements ...
}
Here is an example of a JavaScript file, lib/hello.js:
/* Copyright (c) FYIcenter.com
*/
/* @transaction
* @param {com.fyicenter.hyperledger.hello.Hello} req
*/
function helloProcessor(req) {
console.log("Hello "+req.name+"!");
}
Â
⇒ "transaction" Process Function Syntax
⇠Business Network JS Scripting Language
2021-06-05, ∼1364🔥, 0💬
Popular Posts:
How to use the "@(...)" expression in Azure API Policy? The "@(...)" expression in Azure API Policy ...
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special char...
How to how to use matched string and groups in replacements with re.sub()? When calling the re.sub()...
How To Convert a Character to an ASCII Value? If you want to convert characters to ASCII values, you...
Where to find tutorials on Using Azure API Management Publisher Dashboard? Here is a list of tutoria...