給需要設(shè)置的JSON字段初試化你想設(shè)置的值就OK。
比如我想讓[]string類(lèi)型的字段的默認(rèn)值是[],而不是nil,那我就make([]string, 0)賦值給該字段。
轉(zhuǎn)成JSON輸出后,就是[]。
1. 示例代碼
這是沒(méi)有初始化的代碼。默認(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 {
}
//實(shí)現(xiàn)http.Handler這個(gè)接口的唯一方法
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, "沒(méi)有此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() {
//實(shí)例化路由器Handler
mymux := MyMux1{}
//基于TCP服務(wù)監(jiān)聽(tīng)8088端口
ln, err := net.Listen("tcp", ":8089")
if err != nil {
fmt.Printf("設(shè)置監(jiān)聽(tīng)端口出錯(cuò)...")
}
//調(diào)用http.Serve(l net.Listener, handler Handler)方法,啟動(dòng)監(jiān)聽(tīng)
err1 := http.Serve(ln, mymux)
if err1 != nil {
fmt.Printf("啟動(dòng)監(jiān)聽(tīng)出錯(cuò)")
}
}
示例結(jié)果如下圖1所示,字段Test2的默認(rèn)值是nil。
以下是對(duì)[]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所示。
2. 示例結(jié)果
3. 總結(jié)
其他字段想要設(shè)置默認(rèn)輸出值,只需要對(duì)其進(jìn)行相應(yīng)的初始化即可。
補(bǔ)充:golang json Unmarshal的時(shí)候,在key為空的時(shí)候給予默認(rèn)值
我就廢話(huà)不多說(shuō)了,大家還是直接看代碼吧~
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沒(méi)有的情況下可以指定對(duì)應(yīng)的值,這樣就可以了。
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。
您可能感興趣的文章:- golang xorm及time.Time自定義解決json日期格式的問(wèn)題
- golang 實(shí)現(xiàn)struct、json、map互相轉(zhuǎn)化
- Django-Scrapy生成后端json接口的方法示例
- Golang 如何解析和生成json
- 解決Django響應(yīng)JsonResponse返回json格式數(shù)據(jù)報(bào)錯(cuò)問(wèn)題