摘要:
原文链接:http://www.52bd.net/code/210.html demo: package main import ( "fmt" ) //通知行为的接口 type notifier interface{ notify() } //自定义的用户类型 type user struct{ 阅读全文
摘要:
原文链接:https://blog.csdn.net/skh2015java/article/details/90720692omitempty作用是在json数据结构转换时,当该字段的值为该字段类型的零值时,忽略该字段。 package main import ( "fmt" "encoding/ 阅读全文
摘要:
原文链接:https://blog.csdn.net/weixin_43223076/article/details/83550229 demo1: package main import ( "net/http" "log" "encoding/json" ) type User struct{ 阅读全文