활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
When we have parameters in the url, we can use request.requestParameterMap[value] ....It was working fine in 6.1 but in 6.3 after CFP1 installation ,its working only when the url has parameter else its throwing an error "org.apache.sling.api.SlingException: Cannot get DefaultSlingScript: org.apache.sling.api.SlingException: Cannot get DefaultSlingScript: null ".. I tried to validate to put the code only when the url has parameters .but I am not able to check whether the url has parameters or not in sightly ...Any thoughts on this? Thanks
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
Thanks neelesh for the reply..
It will work only when you have one query parameter but in our case we had two query parameters, For some pages one queryparameter will be used and for some pages the other queryparameter will be used in the same html.
For Example : ?q=&tag=
For that purpose I was validating with this line of code :
<sly data-sly-test="${request.queryString}"> or
<sly data-sly-test="${request.requestParameterMap}" data-sly-unwrap> this will also work.
and also I have written some JS for fetching the two queryparameters and assigning it to some variable in JS itself and returning it in html.
In that way it was fixed.
조회 수
답글
좋아요 수
Can you try <sly data-sly-test.val=${request.requestParameterMap['value'][0].toString} />
조회 수
답글
좋아요 수
Thanks..
I tried that but its not working after CFP1.
It will work only when you have query parameters in your URL, otherwise its throwing above error.
Its not working even when we are testing the condition using data-sly-test..
조회 수
답글
좋아요 수
As mentioned by Ankur,
To access the parameter value, you can use ${request.requestParameterMap['test'][0].toString}.
Example: URL: http://server:port/xyz?test=hello
then output would be: hello
Reference point 12:- HTL introduction part 5: FAQ
-Kautuk
조회 수
답글
좋아요 수
Currently we do have same code but its not working after installing CFP1 in 6.3..
It will work only when we have queryparameters in URL , otherwise its throwing an error but it was not happened before CFP1
조회 수
답글
좋아요 수
Use this condition as below and let me know ,if it works fine.
<sly data-sly-test="${request.requestParameterMap}" data-sly-unwrap>
${request.requestParameterMap['test'][0].toString}
</sly>
조회 수
답글
좋아요 수
Thanks neelesh for the reply..
It will work only when you have one query parameter but in our case we had two query parameters, For some pages one queryparameter will be used and for some pages the other queryparameter will be used in the same html.
For Example : ?q=&tag=
For that purpose I was validating with this line of code :
<sly data-sly-test="${request.queryString}"> or
<sly data-sly-test="${request.requestParameterMap}" data-sly-unwrap> this will also work.
and also I have written some JS for fetching the two queryparameters and assigning it to some variable in JS itself and returning it in html.
In that way it was fixed.
조회 수
답글
좋아요 수
조회 수
Likes
답글
조회 수
Likes
답글