param"
From Documentation
m |
|||
Line 1: | Line 1: | ||
− | {{ | + | {{ZUMLReferencePageHeader}} |
== param - java.util.Map == | == param - java.util.Map == | ||
Line 19: | Line 19: | ||
</source> | </source> | ||
− | {{ | + | {{ZUMLReferencePageFooter}} |
Revision as of 05:03, 5 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>