Hi,All
type Mount struct {
Source string `json:"source"`
Destination string `json:"destination"`
Writable bool `json:"writable"`
Private bool `json:"private"`
}
如题,如上,如Source字段,类型为string,但是``内的json:"source"是什么意思?
thx in advance.
struct tag,反射可以解析出来的。比如 encoding/json 包解析时就用到了这个。
json:"source" 这样的内容是随意的,你可以自己定义,如: abc:"source",这样,你可以通过反射,自己解析它。
#1