I have a list of file paths stored in an array within the scope variable of an AngularJS Controller.
My goal is to properly map these file paths to a Java REST controller for further processing.
When I pass it as "/ABC/Scope-Variable," it successfully matches the REST controller by interpreting Scope-Variable as a string.
However, when I attempt to use "/ABC/+Scope-Variable," due to the presence of slashes and an array in the file path, I am unable to map it to the Java REST controller.
Any assistance is greatly appreciated.
Thank you