使用Go語言怎么對JSON的默認(rèn)值進行設(shè)置?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
創(chuàng)新互聯(lián)的客戶來自各行各業(yè),為了共同目標(biāo),我們在工作上密切配合,從創(chuàng)業(yè)型小企業(yè)到企事業(yè)單位,感謝他們對我們的要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。專業(yè)領(lǐng)域包括成都網(wǎng)站建設(shè)、成都做網(wǎng)站、電商網(wǎng)站開發(fā)、微信營銷、系統(tǒng)平臺開發(fā)。1. 示例代碼
這是沒有初始化的代碼。默認(rèn)值是nil。
package main import ( "encoding/json" "fmt" "net" "net/http" ) type JsonTest struct { Test1 string `json:"test1"` Test2 []string `json:"test2"` } //定義自己的路由器 type MyMux1 struct { } //實現(xiàn)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服務(wù)監(jiān)聽8088端口 ln, err := net.Listen("tcp", ":8089") if err != nil { fmt.Printf("設(shè)置監(jiān)聽端口出錯...") } //調(diào)用http.Serve(l net.Listener, handler Handler)方法,啟動監(jiān)聽 err1 := http.Serve(ln, mymux) if err1 != nil { fmt.Printf("啟動監(jiān)聽出錯") } }
示例結(jié)果如下圖1所示,字段Test2的默認(rèn)值是nil。
以下是對[]string字段初始化的代碼。默認(rèn)輸出值是[]。
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) }
示例結(jié)果如下圖2所示。
其他字段想要設(shè)置默認(rèn)輸出值,只需要對其進行相應(yīng)的初始化即可。
補充:golang json Unmarshal的時候,在key為空的時候給予默認(rèn)值
我就廢話不多說了,大家還是直接看代碼吧~
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) }
結(jié)果
&[{1 -2 3} {4 2 } {default A -2 5}]
可以看到 在key沒有的情況下可以指定對應(yīng)的值,這樣就可以了。
看完上述內(nèi)容,你們掌握使用Go語言怎么對JSON的默認(rèn)值進行設(shè)置的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
分享文章:使用Go語言怎么對JSON的默認(rèn)值進行設(shè)置-創(chuàng)新互聯(lián)
地址分享:http://jinyejixie.com/article40/dpdoeo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供虛擬主機、App設(shè)計、網(wǎng)站改版、外貿(mào)建站、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站策劃
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容