12
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Goでmapをjson文字列に変換する

Last updated at Posted at 2019-06-12

POSTのリクエストを送る際にリクエストボディをmapをjsonの[]byte型に変換したかったので試したメモ

package main

import (
	"encoding/json"
	"fmt"
)

func main() {
	body := map[string]string{
		"name": "konchan",
	}

	bytes, err := json.Marshal(body)
	if err != nil {
		fmt.Println("JSON marshal error: ", err)
		return
	}

	fmt.Println(string(bytes))
}

Playground

12
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?