首頁 > 後端開發 > Golang > golang數據怎麼轉json

golang數據怎麼轉json

PHPz
發布: 2023-04-24 10:07:00
原創
2573 人瀏覽過

隨著網路的快速發展,資料的處理和傳輸變得日益重要。 JSON(JavaScript Object Notation)是一種輕量級的資料交換格式,它以易於閱讀和編寫的文字格式廣泛應用於互聯網傳輸資料。而golang作為一種高效率的程式語言,也提供了輕鬆轉換資料為JSON格式的方法。

在golang中,透過編寫程式碼可以將資料轉換為JSON格式。具體來說,有以下兩種方式:

方式一:使用標準庫庫encoding/json

標準庫庫encoding/json提供方法進行JSON格式的編解碼。首先我們要定義一個自訂結構體,其中的欄位需要用json標籤註明:

type Person struct {
 Name string json:"name"
#  Age int    json:"age"
}

這裡的json標籤指定了該欄位在JSON中的名稱。接下來,我們可以用產生JSON的byte數組的方式將Person類型的資料轉換為JSON格式:

#import (
 "encoding/json"
 "fmt"
)

func main() {
 person := Person{Name: "Tom", Age: 18}
 data, err := json.Marshal(person)
 if err != nil {

fmt.Println("JSON Marshalling failed:", err)
return
登入後複製
登入後複製

}
 fmt.Printf("JSON data:\n%s\n", data)
}

輸出結果:

JSON data:
{"name":"Tom","age":18}

我們也可以使用Unmarshal函數將JSON解碼為結構體:

func main() {
 jsonStr := {"name":"Tom","age":18}

var person Person
 if err := json.Unmarshal([]byte (jsonStr), &person); err != nil {

fmt.Println("JSON Unmarshalling failed:", err)
return
登入後複製
登入後複製

}

fmt.Printf("Decoded Person data: % v\n", person)
}

輸出結果:

Decoded Person data: {Name:Tom Age:18}

方式二:使用第三方函式庫

使用第三方函式庫將資料轉換為JSON格式也非常簡單。其中比較流行的有gjson、jsoniter等函式庫。這裡以jsoniter為例。

先定義自訂結構體,與方式一相同。

接下來,我們可以使用jsoniter函式庫的Marshal函數將Person型別的資料轉換為JSON格式,與標準函式庫類似:

import (
 "github.com/json- iterator/go"
 "fmt"
)

func main() {
 // define struct
 person := Person{Name: "Tom", Age: 18}

// convert data to json format
 data, err := jsoniter.Marshal(person)
 if err != nil {

fmt.Println("JSON Marshalling failed:", err)
return
登入後複製
登入後複製

}

fmt.Printf("JSON data:\n%s\n", data)
}

#輸出結果:

JSON data:
{"name":"Tom ","age":18}

相同的,我們也可以使用jsoniter函式庫的Unmarshal函數解碼由JSON格式轉換來的資料:

func main() {
 jsonStr := {"name":"Tom","age":18}

var person Person
 if err := jsoniter.Unmarshal([]byte(jsonStr), &person); err != nil {

fmt.Println("JSON Unmarshalling failed:", err)
return
登入後複製
登入後複製

}

fmt.Printf("Decoded Person data: % v\n", person)
}

輸出結果:

Decoded Person data: {Name:Tom Age:18}

#總結

在golang中,我們可以使用標準庫庫encoding/json將資料轉換為JSON格式,也可以使用第三方函式庫來實現相同的轉換。不同的庫在某些方面有所不同,因此可以根據實際情況選擇合適的庫。無論使用哪種方式,轉換JSON格式是非常簡單的。

以上是golang數據怎麼轉json的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板