Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to convert structure into json string in go language

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces "go language how to convert structure into json string". In daily operation, I believe many people have doubts about how to convert structure into json string in go language. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the question of "how to convert structure into json string in go language". Next, please follow the editor to study!

1. Since you are converting a structure into a json string, define a structure first

The copy code is as follows:

/ / define a structure

Type NewsModel struct {

Id int

Title string

}

2. Let's see what method the ffjson package uses to convert the structure into a json string

The copy code is as follows:

Func main () {

News: = NewsModel {110, "hello"}

Res,err: = ffjson.Marshal (news)

If err! = nil {

Fmt.Println ("format error")

Fmt.Println (err.Error ())

Return

}

/ / it is a byte array, so it is also converted to string.

Fmt.Println (string (res))

}

Print:

{"Id": 110," Title ":" hello "}

Get a json string

3. Expansion

Encapsulate a method ToJson () for the structure specifically to do this

The copy code is as follows:

Package main

Import (

"fmt"

"github.com/pquerna/ffjson/ffjson"

)

/ / define a structure

Type NewsModel struct {

Id int

Title string

}

/ / define a method

Func (news NewsModel) ToJson () string {

Res,err: = ffjson.Marshal (news)

If err! = nil {

Return err.Error ()

}

/ / it is a byte array, so it is also converted to string.

Return string (res)

}

Func main () {

News: = NewsModel {110, "hello"}

Fmt.Println (news.ToJson ()) / / print: {"Id": 110, "Title": "hello"}

}

At this point, the study of "how the go language converts structures into json strings" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report