gregh3269 commented on PR #210:
URL: https://github.com/apache/struts-site/pull/210#issuecomment-1784044904
I would include an example if possible, examples are better than words.
This would save some head scratching!!
On your example :
<s:set var="paramName" scope="page">${param.paramName}</s:set>
<s:property value="paramName"/>
I think its better to have the #attr always, but for scope="page" its
required
with scope:
<s:set var="paramName" scope="page">${param.paramName}</s:set>
<s:property value="#attr.paramName"/>
with no scope:
<s:set var="paramName">${param.paramName}</s:set>
<s:property value="#attr.paramName"/>
<s:property value="#paramName"/>
<s:property value="paramName"/>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]