だから私は信じられないほどハックに思える次のものを持っています、そして私はGoがこれよりも優れたライブラリを設計したと私は考えていましたが、JSONデータのPOSTリクエストを処理するGoの例を見つけることができません。それらはすべてフォームPOSTです。
次にリクエストの例を示します。 curl -X POST -d "{\"test\": \"that\"}" http://localhost:8082/test
そしてここにコードがあり、ログが埋め込まれています:
package main
import (
"encoding/json"
"log"
"net/http"
)
type test_struct struct {
Test string
}
func test(rw http.ResponseWriter, req *http.Request) {
req.ParseForm()
log.Println(req.Form)
//LOG: map[{"test": "that"}:[]]
var t test_struct
for key, _ := range req.Form {
log.Println(key)
//LOG: {"test": "that"}
err := json.Unmarshal([]byte(key), &t)
if err != nil {
log.Println(err.Error())
}
}
log.Println(t.Test)
//LOG: that
}
func main() {
http.HandleFunc("/test", test)
log.Fatal(http.ListenAndServe(":8082", nil))
}
もっと良い方法があるはずですよね?私はベストプラクティスが何であるかを見つけるのに困惑しています。
(Goは検索エンジンではGolangとも呼ばれ、他の人が見つけられるようにここで言及されています。)
curl -X POST -H 'Content-Type: application/json' -d "{\"test\": \"that\"}"
、req.Form["test"]
戻ります"that"