Solved
Access request query string parameter in Sightly component
How do I access a request query string parameter in Sightly HTML. Do I have to expose it through the WCMUse model or can I just access it directly in the HTML?
How do I access a request query string parameter in Sightly HTML. Do I have to expose it through the WCMUse model or can I just access it directly in the HTML?
You can use the following:
${request.requestParameterMap['test'][0].toString}
With http://server:port/resource?test=hello, then the output is ‘hello’
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.