我正在使用 Martini 构建一个 RESTful API,并且很难访问通过以下方式发送到我的服务的 book.json 的内容
curl -X POST "http://localhost:8080/books" -H "Content-Type: application/json" -d @book.json
book.json 不是二进制文件,而是包含 JSON 数组的简单文本文件。如何访问传输的 JSON?http.Request 上的 PostForm 为空。
我知道这很旧,但您可能正在寻找 Martini Binding
https://github.com/martini-contrib/binding
m.Post("/contact/submit", binding.Bind(ContactForm{}), func(contact ContactForm) string {
return fmt.Sprintf("Name: %s\nEmail: %s\nMessage: %s",
contact.Name, contact.Email, contact.Message)
})
您可能在 request.Body 中有可以解组的数据。恕我直言,这篇文章很好地解释了这个问题: http ://nathanleclaire.com/blog/2013/11/30/fear-and-loathing-with-golang-and-angular-js/