記事などを参考にしてAPIを書いているのですが,思った挙動にならないです。
Go
1package main 2 3import ( 4 "encoding/json" 5 "fmt" 6 "io/ioutil" 7 "log" 8 "net/http" 9 10 "github.com/gorilla/mux" 11) 12 13type event struct { 14 ID string `json:"ID"` 15 Title string `json:"Title"` 16 Description string `json:"Description"` 17} 18 19type allEvents []event 20 21var events = allEvents{ 22 { 23 ID: "1", 24 Title: "Introduction to Golang", 25 Description: "Come join us for a chance to learn how golang works and get to eventually try it out", 26 }, 27} 28 29func homeLink(w http.ResponseWriter, r *http.Request) { 30 fmt.Fprintf(w, "Welcome home!") 31} 32 33func createEvent(w http.ResponseWriter, r *http.Request) { 34 var newEvent event 35 reqBody, err := ioutil.ReadAll(r.Body) 36 if err != nil { 37 fmt.Fprintf(w, "Kindly enter data with the event title and description only in order to update") 38 } 39 40 json.Unmarshal(reqBody, &newEvent) 41 events = append(events, newEvent) 42 w.WriteHeader(http.StatusCreated) 43 44 json.NewEncoder(w).Encode(newEvent) 45} 46 47func main() { 48 router := mux.NewRouter().StrictSlash(true) 49 router.HandleFunc("/", homeLink) 50 router.HandleFunc("/event", createEvent).Methods("POST") 51 log.Fatal(http.ListenAndServe(":8080", router)) 52} 53
具体的には上のようなコードを実行して以下のようなリクエストをpostmanを使って
localhost:8080/eventでPOSTで送っており,これをそのままレスポンスで返してもらいたいのですが,
{ ID: "2", Title: "sample", Description: "insertevents" }
このようなレスポンスが返ってきます。
{"ID":"","Title":"","Description":""}
以下のようなレスポンスが返ってくるようにするにはどうすれば良いのでしょうか。
初歩的な質問かもしれませんがよろしくお願いいたします。
{ ID: "2", Title: "sample", Description: "insertevents" }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。