writeFormBody - multiple declarations
Function writeFormBody
Writes a HTTPClientRequest
body as URL encoded form data.
Example
import vibe .core .log;
import vibe .http .client;
import vibe .http .form;
import vibe .stream .operations;
void sendForm()
{
requestHTTP("http://example.com/form",
(scope req) {
req .method = HTTPMethod .POST;
req .writeFormBody(["field1": "value1", "field2": "value2"]);
},
(scope res) {
logInfo("Response: %s", res .bodyReader .readAllUTF8());
});
}
Function writeFormBody
Writes a HTTPClientRequest
body as URL encoded form data.
void writeFormBody(PairRange)
(
HTTPClientRequest req,
PairRange form
)
if (isTuple!(ElementType!PairRange) && (ElementType!PairRange .length == 2));
Parameters
Name | Description |
---|---|
req | Request object to write to. |
form | range of t = Tuple!(string, string) ,
where t[0] is the name and t[1] the
value of a form entry. |
Example
import vibe .core .log;
import vibe .http .client;
import vibe .http .form;
import vibe .stream .operations;
import std .range;
void sendForm()
{
string[] names = ["foo", "bar", "baz"];
string[] values = ["1", "2", "3"];
auto form = zip(names, values);
requestHTTP("http://example.com/form",
(scope req) {
req .method = HTTPMethod .POST;
req .writeFormBody(form);
},
(scope res) {
logInfo("Response: %s", res .bodyReader .readAllUTF8());
});
}