Golang_tag

前端之家收集整理的这篇文章主要介绍了Golang_tag前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Golang tag也就是go语言中的注解

比如

type PostBody struct {
	Ids []int `json:"Id__in__int"`
}
`json:"Id__in__int"` 这一段内容就是Ids这个属性的一个tag

我们可以通过反射来获取这个tag的值

如下所示

package main

import (
	"fmt"
	"reflect"
)

type PostBody struct {
	Ids []int `json:"Id__in__int"`
}

func main() {
//	s := "{\"Id__in__int\":[101010,101009],\"text__in__string\":[\"开单\",\"测试页\"]}"
//	var pb struct {
//		Ids []int `json:"Id__in__int"`
//	}
//	err := json.Unmarshal([]byte(s),&pb)
//	if err == nil {
//		fmt.Println(pb)
//	}
	sf,_ := reflect.TypeOf(&PostBody{}).Elem().FieldByName("Ids")
	tag := string(sf.Tag)
	fmt.Println(tag)
}
用途很多 比如 说 json解析 又或者 orm 都可以用到 原文链接:https://www.f2er.com/go/190796.html

猜你在找的Go相关文章