I want to get the request "name" to format it before save it. In Laravel, it is easy to get the value with postman via $request->input('name')
at the controller.
I learn Go recently and got confused how to get the same value from postman. I am using http/net in Go.
How do I get the $request->input('name')
in Go as in Laravel?
I'm working with POST method.