Golang帮助反射获取值

发布于 2024-11-18 07:11:16 字数 280 浏览 1 评论 0原文

我对 Go 很陌生。我想知道如何使用 Go 中的 Reflection 从中获取映射的价值。


type url_mappings struct{
    mappings map[string]string
}

func init() {
    var url url_mappings
    url.mappings = map[string]string{
        "url": "/",
        "controller": "hello"}

谢谢

I'm very new in Go. I was wondering how do I get value of mappings out of this using Reflection in Go.


type url_mappings struct{
    mappings map[string]string
}

func init() {
    var url url_mappings
    url.mappings = map[string]string{
        "url": "/",
        "controller": "hello"}

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鼻尖触碰 2024-11-25 07:11:16
import "reflect"
v := reflect.ValueOf(url)
f0 := v.Field(0) // Can be replaced with v.FieldByName("mappings")
mappings := f0.Interface()

mappings 的类型是interface{},因此您不能将其用作地图。
要获得其类型为 map[string]string 的真实映射,您需要使用一些类型断言

realMappings := mappings.(map[string]string)
println(realMappings["url"])

由于重复的 map[string]string,我会:

type mappings map[string]string

然后你可以:

type url_mappings struct{
    mappings // Same as: mappings mappings
}
import "reflect"
v := reflect.ValueOf(url)
f0 := v.Field(0) // Can be replaced with v.FieldByName("mappings")
mappings := f0.Interface()

mappings's type is interface{}, so you can't use it as a map.
To have the real mappings that it's type is map[string]string, you'll need to use some type assertion:

realMappings := mappings.(map[string]string)
println(realMappings["url"])

Because of the repeating map[string]string, I would:

type mappings map[string]string

And then you can:

type url_mappings struct{
    mappings // Same as: mappings mappings
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文