You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that by default there is a smart computation for the query/post/... parameters:
5
+
for instance
6
+
-`q=a&q=b` : will create a **WSF_MULTIPLE_STRING** parameter with name **q** and value `[a,b]`
7
+
-`tab[a]=ewf&tab[b]=demo` : will create a **WSF_TABLE** parameter with name **tab** and value `{ "a": "ewf", "b": "demo"}`
8
+
-`tab[]=ewf&tab[]=demo` : will create a **WSF_TABLE** parameter with name **tab** and value `{ "1": "ewf", "2": "demo"}`
9
+
-`tab[foo]=foo&tab[foo]=bar` : will create a **WSF_TABLE** parameter with name **tab** and value `{ "foo": "bar"}`**WARNING: only the last `tab[foo]` is kept**.
10
+
11
+
Those rules are applied to query, post, path, .... parameters.
12
+
13
+
## How to get the input data (i.e entity-body) ?
14
+
See `{WSF_REQUEST}.read_input_data_into (buf: STRING)`
15
+
16
+
## How to get the raw header data (i.e the http header text) ?
17
+
See `{WSF_REQUEST}.raw_header_data: detachable READABLE_STRING_32`
0 commit comments