Encodes the given dictionary as URL encoded form data.
import std.array; import vibe.core.log; import vibe.http.form; void test() { auto dst = appender!string(); dst.writeFormData(["field1": "value1", "field2": "value2"]); logInfo("Form data: %s", dst.data); }
See Implementation
Encodes the given dictionary as URL encoded form data.