param

From Documentation
⧼coll-notfound_msg⧽

Return to Documentation.


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>



Last Update : 2010/07/23

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.