param"
From Documentation
m |
m |
||
Line 1: | Line 1: | ||
{{ZUMLReferencePageHeader}} | {{ZUMLReferencePageHeader}} | ||
− | + | = param - java.util.Map = | |
A map of parameters of the request, <tt>Map<String, String></tt>. | A map of parameters of the request, <tt>Map<String, String></tt>. | ||
Line 18: | Line 18: | ||
</zscript> | </zscript> | ||
</source> | </source> | ||
+ | |||
+ | =Version History= | ||
+ | {{LastUpdated}} | ||
+ | {| border='1px' | width="100%" | ||
+ | ! Version !! Date !! Content | ||
+ | |- | ||
+ | | | ||
+ | | | ||
+ | | | ||
+ | |} | ||
{{ZUMLReferencePageFooter}} | {{ZUMLReferencePageFooter}} |
Revision as of 11:32, 18 November 2010
param - java.util.Map
A map of parameters of the request, Map<String, String>.
To retrieve all possible parameter values, use paramValues instead.
${param.something}
${paramValues.something[0]}
Notice that, in zscript, there is no paramValues. In additions, param is a map of possible values, Map<String, String[]>.
<zscript>
String[] values = param.get("something");
</zscript>
Version History
Version | Date | Content |
---|---|---|