Golang實現Json轉結構體的示例詳解

解決實際需求,案例分享。

1.請求Zabbix API,通過itemid獲取到AppName(應用集名稱)

package main

import (
 "encoding/json"
 "fmt"
 "io/ioutil"
 "log"
 "net/http"
 "strings"
)

func PostRequest(payload string, url string) {
 method := "POST"
 pl := strings.NewReader(payload)
 client := &http.Client{}
 req, err := http.NewRequest(method, url, pl)

 if err != nil {
  fmt.Println(err)
  return
 }
 req.Header.Add("Content-Type", "application/json")

 res, err := client.Do(req)
 if err != nil {
  fmt.Println(err)
  return
 }
 defer res.Body.Close()

 body, err := ioutil.ReadAll(res.Body)

 if err != nil {
  log.Println(err)
  return
 }
 fmt.Println(string(body))
}

func main() {
 const api = "http://192.168.11.11:28080/api_jsonrpc.php"
 const token = "a638200c24a8bea7f78cd5cabf3d1dd5"
 const itemid = "33918"

 a := fmt.Sprintf(`{
  "jsonrpc": "2.0",
  "method": "application.get",
  "params": {"itemids": "%s"},
  "auth": "%s","id": 2
  }`, itemid, token)

 PostRequest(a, api)
}

響應結果:

{"jsonrpc":"2.0","result":[{"applicationid":"1574","hostid":"10354","name":"TEST","flags":"0","templateids":[]}],"id":2}

2.將響應結果(json)轉結構體,方便取值

在原來代碼的基礎上,繼續編碼。

package main

import (
 "encoding/json"
 "fmt"
 "io/ioutil"
 "log"
 "net/http"
 "strings"
)

type resultInfo struct {
 Applicationid string   `json:"applicationid"`
 Hostid        string   `json:"hostid"`
 Name          string   `json:"name"`
 Flags         string   `json:"flags"`
 Templateids   []string `json:"templateids"`
}

type resultArr []resultInfo

type Response struct {
 Jsonrpc string    `json:"jsonrpc"`
 Result  resultArr `json:result`
 Id      int       `json:"id"`
}

type Byte []byte

func JsonConvertStruct(body Byte) {
 var response Response
 json.Unmarshal([]byte(body), &response)
 fmt.Println(response.Result[0].Name)
}

func PostRequest(payload string, url string) {
 method := "POST"
 pl := strings.NewReader(payload)
 client := &http.Client{}
 req, err := http.NewRequest(method, url, pl)

 if err != nil {
  fmt.Println(err)
  return
 }
 req.Header.Add("Content-Type", "application/json")

 res, err := client.Do(req)
 if err != nil {
  fmt.Println(err)
  return
 }
 defer res.Body.Close()

 body, err := ioutil.ReadAll(res.Body)

 if err != nil {
  log.Println(err)
  return
 }
 JsonConvertStruct(body)
}

func main() {
 const api = "http://192.168.11.11:28080/api_jsonrpc.php"
 const token = "a638200c24a8bea7f78cd5cabf3d1dd5"
 const itemid = "33918"

 a := fmt.Sprintf(`{
  "jsonrpc": "2.0",
  "method": "application.get",
  "params": {"itemids": "%s"},
  "auth": "%s","id": 2
  }`, itemid, token)

 PostRequest(a, api)
}

結果:

TEST

3.來自最好的總結

人生苦短,建議你還是用python吧!

到此這篇關於Golang實現Json轉結構體的示例詳解的文章就介紹到這瞭,更多相關Golang Json轉結構體內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: