'How Can I receive params by Form-Data Golang

enter image description here

enter image description here

I´m trying like this, but mensaje is empty, How Can I receive the information? (Golang)



Solution 1:[1]

You can find full answer on your question in this thread: In Go's http package, how do I get the query string on a POST request?

tldr:

value := r.FormValue("field")

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Timofey Belanenko