您好,登錄后才能下訂單哦!
使用Go語言怎么對JSON的默認值進行設置?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
1. 示例代碼
這是沒有初始化的代碼。默認值是nil。
package main import ( "encoding/json" "fmt" "net" "net/http" ) type JsonTest struct { Test1 string `json:"test1"` Test2 []string `json:"test2"` } //定義自己的路由器 type MyMux1 struct { } //實現http.Handler這個接口的唯一方法 func (mux *MyMux1) ServeHTTP(w http.ResponseWriter, r *http.Request) { urlPath := r.URL.Path switch urlPath { case "/test": mux.testJson(w, r) default: http.Error(w, "沒有此url路徑", http.StatusBadRequest) } } func (mux *MyMux1) testJson(w http.ResponseWriter, r *http.Request) { if r.Method != "GET" { http.Error(w, "the method is not allowed", http.StatusMethodNotAllowed) } jsontest := &JsonTest{} //只初始化Test1字段 jsontest.Test1 = "value1" jsondata,_ := json.Marshal(jsontest) w.Header().Set("Content-Type", "application/json") fmt.Fprintf(w, "%s", jsondata) } func main() { //實例化路由器Handler mymux := &MyMux1{} //基于TCP服務監聽8088端口 ln, err := net.Listen("tcp", ":8089") if err != nil { fmt.Printf("設置監聽端口出錯...") } //調用http.Serve(l net.Listener, handler Handler)方法,啟動監聽 err1 := http.Serve(ln, mymux) if err1 != nil { fmt.Printf("啟動監聽出錯") } }
示例結果如下圖1所示,字段Test2的默認值是nil。
以下是對[]string字段初始化的代碼。默認輸出值是[]。
func (mux *MyMux1) testJson(w http.ResponseWriter, r *http.Request) { if r.Method != "GET" { http.Error(w, "the method is not allowed", http.StatusMethodNotAllowed) } jsontest := &JsonTest{} jsontest.Test1 = "value1" jsontest.Test2 = make([]string, 0) jsondata,_ := json.Marshal(jsontest) w.Header().Set("Content-Type", "application/json") fmt.Fprintf(w, "%s", jsondata) }
示例結果如下圖2所示。
其他字段想要設置默認輸出值,只需要對其進行相應的初始化即可。
補充:golang json Unmarshal的時候,在key為空的時候給予默認值
我就廢話不多說了,大家還是直接看代碼吧~
package main import ( "fmt" "encoding/json" ) type Test struct { A string B int C string } func (t *Test) UnmarshalJSON(data []byte) error { type testAlias Test test := &testAlias{ A: "default A", B: -2, } _ = json.Unmarshal(data, test) *t = Test(*test) return nil } var example []byte = []byte(`[{"A": "1", "C": "3"}, {"A": "4", "B": 2}, {"C": "5"}]`) func main() { out := &[]Test{} _ = json.Unmarshal(example, &out) fmt.Print(out) }
結果
&[{1 -2 3} {4 2 } {default A -2 5}]
可以看到 在key沒有的情況下可以指定對應的值,這樣就可以了。
看完上述內容,你們掌握使用Go語言怎么對JSON的默認值進行設置的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。