Differences
This shows you the differences between two versions of the page.
useloadscript [2020/07/08 14:02] wikiadmin created |
useloadscript [2020/07/09 17:45] (current) wikiadmin |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | === Loading a JavaScript Functions File === | + | ===== Loading a JavaScript Functions File ===== |
The load() function allows you to import a file of functions you can use in your script. This file must reside in the same directory where your application is running to be loaded. For MIStudio development this file should be put into the devices folder of the project so it is available at development time as well as used for the deployed project. For TransSECS projects, this file should be put into the resources of the project so it is copied to the deployment. | The load() function allows you to import a file of functions you can use in your script. This file must reside in the same directory where your application is running to be loaded. For MIStudio development this file should be put into the devices folder of the project so it is available at development time as well as used for the deployed project. For TransSECS projects, this file should be put into the resources of the project so it is copied to the deployment. | ||
Line 19: | Line 19: | ||
</ | </ | ||
- | ==Test in MIStudio== | + | ====Test in MIStudio==== |
Place the script file where it will be available for testing in MIStudio, into the MIStudio directory. Also put it into the userfiles of the project so it will be deployed with your MIX build. | Place the script file where it will be available for testing in MIStudio, into the MIStudio directory. Also put it into the userfiles of the project so it will be deployed with your MIX build. | ||
Line 47: | Line 47: | ||
</ | </ | ||
- | This error occurs if the script " | + | This error occurs if the script " |
- | ==Test in TransSECS Devices== | + | ====Test in TransSECS Devices==== |
TransSECS Devices allows scripts on the incoming message beans. The script can only be tested in the deployed project so copy the test.js into your project' | TransSECS Devices allows scripts on the incoming message beans. The script can only be tested in the deployed project so copy the test.js into your project' | ||
Line 68: | Line 68: | ||
When the host sends the host command " | When the host sends the host command " | ||
- | ==Notes== | + | ====Notes==== |
- | The difference in using load() in the script to add a function compared to entering this same code in the script directly is that the function(s) in the .js file are read from the file each time the script is triggered and executed if called, without any optimizations. This should be a consideration when deploying a script using load(). If the function code is entered in the script and built with the deployment, this code (as well as all the other script code) is JIT compiled at runtime so that optimizations are in effect (so the second time the code is run there is not a delay while the code is loaded and exectuted). | + | ===Loading vs. Script in Application=== |
+ | |||
+ | The difference in using load() in the script to add a function compared to entering this same code in the script directly is that the function(s) in the .js file are read from the file each time the script is triggered and executed if called, without any optimizations. This should be a consideration when deploying a script using load(). If the function code is entered in the script and built with the deployment, this code (as well as all the other script code) is JIT compiled at runtime so that optimizations are in effect (so the second time the code is run there is not a delay while the code is loaded and executed). | ||
+ | |||
+ | ===Referencing Servers in the Project and in the Devices Node=== | ||
+ | |||
+ | Scripts loaded from the files do not have the internal shortcuts that MIStudio and TransSECS use to reference data sources in the project but these servers can still be used by using " | ||
+ | |||
+ | < | ||
+ | server=bsf.lookupBean("/ | ||
+ | newValue=server.getDoubleValue(); | ||
+ | server.setTimebase(2.0); | ||
+ | </ | ||
+ | |||
+ | Similarly, if you have added servers to the " | ||
+ | |||
+ | < | ||
+ | server=bsf.lookupBean("/ | ||
+ | currentValue = sever.getIntValue(); | ||
+ | </ |