It would seem most reasonable that the code below would
create a function foo that submits a request to http://localhost:8080 with the fields bar and baz
function foo is called, and a request is submitted to http://localhost:8080 with the field bar having the value 1, and the field baz having the value 2.
It would seem most reasonable that the code below would
foo
that submits a request tohttp://localhost:8080
with the fieldsbar
andbaz
foo
is called, and a request is submitted tohttp://localhost:8080
with the fieldbar
having the value1
, and the fieldbaz
having the value2
.However, it appears that the actual request contains the field
bar
with the valuebaz
and the field1
with the value2
,