真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用Go語言怎么對JSON的默認值進行設(shè)置-創(chuàng)新互聯(lián)

使用Go語言怎么對JSON的默認值進行設(shè)置?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

創(chuàng)新互聯(lián)的客戶來自各行各業(yè),為了共同目標,我們在工作上密切配合,從創(chuàng)業(yè)型小企業(yè)到企事業(yè)單位,感謝他們對我們的要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。專業(yè)領(lǐng)域包括成都網(wǎng)站建設(shè)、成都做網(wǎng)站、電商網(wǎng)站開發(fā)、微信營銷、系統(tǒng)平臺開發(fā)。

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 {
}
//實現(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的默認值是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)
}

示例結(jié)果如下圖2所示。

2. 示例結(jié)果

使用Go語言怎么對JSON的默認值進行設(shè)置

使用Go語言怎么對JSON的默認值進行設(shè)置

3. 總結(jié)

其他字段想要設(shè)置默認輸出值,只需要對其進行相應(yīng)的初始化即可。

補充: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)
}

結(jié)果

&[{1 -2 3} {4 2 } {default A -2 5}]

可以看到 在key沒有的情況下可以指定對應(yīng)的值,這樣就可以了。

看完上述內(nèi)容,你們掌握使用Go語言怎么對JSON的默認值進行設(shè)置的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


標題名稱:使用Go語言怎么對JSON的默認值進行設(shè)置-創(chuàng)新互聯(lián)
當前網(wǎng)址:http://weahome.cn/article/dpdoeo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部