Server Connect NodeJS 2.7.4
* Stop execution of steps on break but do not throw an error
* Updated validator to validate all meta data ($_PARAM etc.)
@patrick Will these be implemented on PHP in a future release?
Server Connect NodeJS 2.7.4
* Stop execution of steps on break but do not throw an error
* Updated validator to validate all meta data ($_PARAM etc.)
@patrick Will these be implemented on PHP in a future release?
In PHP it works a bit different as it will not throw a break error like in NodeJS. I've updated the code so that it also can break out of any layer, here is the update which you can test.
App.zip (2.5 KB)
This is something the PHP version already does.
Fixed. Thanks!
This is something the PHP version already does.
Could it be related to this report where Validate Data does not see $_PARAM so you have to assign it to a variable to use it with Validate Data?
https://community.wappler.io/t/params-validation-rules-don-t-validate/62531
In NodeJS validation rules were only done on $_POST and $_GET but no on $_PARAM. In PHP validation worked on all input (global) variables. There is still a limitation that it only uses the Form Validation rules that expect values as strings.