param"
From Documentation
m (correct highlight (via JWB)) |
|||
Line 2: | Line 2: | ||
= param - java.util.Map = | = param - java.util.Map = | ||
− | It's a map (< | + | It's a map (<code>Map<String, String></code>) of HTTP request parameter like the one returned by [http://docs.oracle.com/javaee/6/api/javax/servlet/ServletRequest.html#getParameterMap() ServletRequest.getParameterMap()] |
If you visit a page with the URL like | If you visit a page with the URL like | ||
Line 18: | Line 18: | ||
</source> | </source> | ||
− | To retrieve all possible parameter values, use < | + | To retrieve all possible parameter values, use <code>paramValues</code> instead. |
<source lang="xml"> | <source lang="xml"> | ||
Line 25: | Line 25: | ||
</source> | </source> | ||
− | Notice that, in zscript, there is no < | + | Notice that, in zscript, there is no <code>paramValues</code>. <code>Param</code> is a map of possible values, <code>Map<String, String[]></code>. |
<source lang="xml"> | <source lang="xml"> |
Latest revision as of 13:26, 19 January 2022
param - java.util.Map
It's a map (Map<String, String>
) of HTTP request parameter like the one returned by ServletRequest.getParameterMap()
If you visit a page with the URL like
http://localhost:8080/mypage.zul?p1=v1&p2=v2
Then you can retrieve parameters' value with the syntax below:
${param.p1}
${param.p2}
And the reulst will be:
v1
v2
To retrieve all possible parameter values, use paramValues
instead.
${param.something}
${paramValues.something[0]}
Notice that, in zscript, there is no paramValues
. Param
is a map of possible values, Map<String, String[]>
.
<zscript>
String[] values = param.get("something");
</zscript>
Version History
Version | Date | Content |
---|---|---|