@QueryParam"
From Documentation
(Created page with "{{ZKDevelopersReferencePageHeader}} =Syntax= <source lang="java"> @QueryParam("keyString") </source> = Description = '''Target:''' A method's parameter (initial method and com...") |
m ((via JWB)) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{ZKDevelopersReferencePageHeader}} | {{ZKDevelopersReferencePageHeader}} | ||
+ | {{Deprecated | url=[http://books.zkoss.org/zk-mvvm-book/8.0/syntax/queryparam.html zk-mvvm-book/8.0/syntax/viewmodel/parameters/queryparam]|}} | ||
+ | |||
=Syntax= | =Syntax= | ||
Line 32: | Line 34: | ||
</source> | </source> | ||
* In this example, binder will pass "abc" to parm1. | * In this example, binder will pass "abc" to parm1. | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | =Version History= | ||
+ | |||
+ | {| class='wikitable' | width="100%" | ||
+ | ! Version !! Date !! Content | ||
+ | |- | ||
+ | | 6.0.0 | ||
+ | | February 2012 | ||
+ | | The MVVM was introduced. | ||
+ | |} | ||
+ | |||
{{ZKDevelopersReferencePageFooter}} | {{ZKDevelopersReferencePageFooter}} |
Latest revision as of 07:36, 8 July 2022
This article is out of date, please refer to zk-mvvm-book/8.0/syntax/viewmodel/parameters/queryparam for more up to date information.
Syntax
@QueryParam("keyString")
Description
Target: A method's parameter (initial method and command method)
Purpose: Tell binder to retrieve this parameter with specified key from HTTP request parameters.
The annotation is applied to initial method's (or command method's) parameter. It declare the applied parameter should come from HTTP request parameters with specified key.
Example
Http request parameters is appended at URL like: http://localhost:8080/zkbinddemo/httpparam.zul?param1=abc
public class HttpParamVM {
String queryParam;
@Init
public void init(@QueryParam("param1") String parm1){
queryParam = parm1;
}
- In this example, binder will pass "abc" to parm1.
Version History
Version | Date | Content |
---|---|---|
6.0.0 | February 2012 | The MVVM was introduced. |