Difference between revisions of "QAS getParameters"
(→QAS_getParameters) |
|||
(4 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
[[Category:Questionnaire Functions]] | [[Category:Questionnaire Functions]] | ||
__NOTOC__ | __NOTOC__ | ||
− | This function will get '''all''' parameters that passed into a specific QAS. This function must be used in a specific QAS context.<br /> | + | This function will get '''all''' parameters that passed into a specific QAS. This function must be used in a specific QAS context.<br /><br /><b>This function just works in questionnaire viewer mode.</b> |
=== <span style="color:#DF8621;">'''Syntax'''</span> === | === <span style="color:#DF8621;">'''Syntax'''</span> === | ||
Line 13: | Line 13: | ||
A dictionary | A dictionary | ||
− | * The parameter name will be the key in the | + | * The parameter name will be the key in the keypairs of dictionary. |
− | * The value of parameter will be the value in the | + | * The value of parameter will be the value in the value pairs of dictionary |
=== <span style="color:#DF8621;">'''See also'''</span> === | === <span style="color:#DF8621;">'''See also'''</span> === | ||
Line 23: | Line 23: | ||
<source lang="javascript"> | <source lang="javascript"> | ||
+ | //Link of the qas : http://cg.catglobe.com/Login.aspx?r=1a997688-4a8f-43c2-bfaf-cdf3b0226678&test=1&signup=454&point=100 | ||
Dictionary parameters = QAS_getParameters(); // Must be used in a specific QAS context | Dictionary parameters = QAS_getParameters(); // Must be used in a specific QAS context | ||
− | print(parameters.ToString()); //Result: {"test":1,"signup":454,"point":100} | + | print(parameters.ToString()); // Result: {"test":1,"signup":454,"point":100} |
</source> | </source> | ||
+ | |||
+ | === <span style="color:#DF8621;">'''Availability'''</span> === | ||
+ | |||
+ | Version 5.8.1 |
Latest revision as of 04:18, 10 March 2015
QAS_getParameters
This function will get all parameters that passed into a specific QAS. This function must be used in a specific QAS context.
This function just works in questionnaire viewer mode.
Syntax
QAS_getParameters()
Arguments
none
Return type
A dictionary
- The parameter name will be the key in the keypairs of dictionary.
- The value of parameter will be the value in the value pairs of dictionary
See also
- getParameter()
Examples
//Link of the qas : http://cg.catglobe.com/Login.aspx?r=1a997688-4a8f-43c2-bfaf-cdf3b0226678&test=1&signup=454&point=100
Dictionary parameters = QAS_getParameters(); // Must be used in a specific QAS context
print(parameters.ToString()); // Result: {"test":1,"signup":454,"point":100}
Availability
Version 5.8.1