登录
首页 >  Golang >  Go问答

从 Go 中其他包中的结构中读取上下文值

来源:stackoverflow

时间:2024-04-20 22:39:37 490浏览 收藏

欢迎各位小伙伴来到golang学习网,相聚于此都是缘哈哈哈!今天我给大家带来《从 Go 中其他包中的结构中读取上下文值》,这篇文章主要讲到等等知识,如果你对Golang相关的知识非常感兴趣或者正在自学,都可以关注我,我会持续更新相关文章!当然,有什么建议也欢迎在评论留言提出!一起学习!

问题内容

在结构中设置值并将该结构传递到上下文,如下所示。

package client

type (
    applicationstate struct{}
)

type applicationstate struct {
    requestid         string
    requestparameters interface{}
    requestpath       string
}

appstate := applicationstate{
        requestid:         "123",
        requestparameters: req,             // req is an interface{}
        requestpath:       "abc/def",
}

newctx := context.withvalue(ctx, applicationstate{}, appstate) // new context after passing the value
return handler(newctx, req) // passing it to the handler, so i can read it in other interceptor

现在,当我尝试从上下文(修改后的上下文)在不同的包中读取这些值时,结果是 nil

package server
type (
    applicationState struct{}
)

fmt.Println("values from context is:", ctx.Value((applicationState{}))) // the value is nil

我很困惑我在这里错过了什么?我认为在上下文中传递键值对可以在设置值后在任何地方读取。


正确答案


有人可以验证这是否是正确的方法吗?

我想我找到了一个解决方案,它可能正确也可能不正确,但它也适用于不同的包。

创建了一个全局结构,而不是本地结构。

package client

type applicationstate struct {
    requestid         string
    requestparameters interface{}
    requestpath       string
}

type (
    appstate struct{} // global struct
)

appstate := applicationstate{
        requestid:         xrid,
        requestparameters: req,
        requestpath:       info.fullmethod,
    }

newctx := context.withvalue(ctx, appstate{}, appstate)

然后在另一个包中,导入包客户端,并按原样获取值。

package server

import "client"

fmt.Println(ctx.Value(client.AppState{}).(performance.ApplicationState).RequestID) // using it here

好了,本文到此结束,带大家了解了《从 Go 中其他包中的结构中读取上下文值》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多Golang知识!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>