登录
首页 >  Golang >  Go问答

context中的值不能在不同的包中传递吗?

来源:stackoverflow

时间:2024-04-09 18:57:32 493浏览 收藏

从现在开始,我们要努力学习啦!今天我给大家带来《context中的值不能在不同的包中传递吗?》,感兴趣的朋友请继续看下去吧!下文中的内容我们主要会涉及到等等知识点,如果在阅读本文过程中有遇到不清楚的地方,欢迎留言呀!我们一起讨论,一起学习!

问题内容

今天我尝试使用上下文进行编程,代码如下:

package main

func main(){
  ctx := context.Background()
  ctx = context.WithValue(ctx,"appid","test111")
  b.dosomething()
}


package b

func dosomething(ctx context.Context){
    fmt.Println(ctx.Value("appid").(string))
}

然后我的程序崩溃了。我认为这是因为这些 ctx 位于不同的包中


解决方案


我建议您仅在单个任务的生命周期中使用上下文,并通过函数传递相同的上下文。 此外,您还应该了解在哪里使用上下文以及在哪里将参数传递给函数。

另一个建议是使用自定义类型从上下文中设置和获取值。

根据上述内容,您的程序应如下所示:

package main

import (
    "context"
    "fmt"
)

type KeyMsg string

func main() {
    ctx := context.WithValue(context.Background(), KeyMsg("msg"), "hello")
    DoSomething(ctx)
}

// DoSomething accepts context value, retrieves message by KeyMsg and prints it.
func DoSomething(ctx context.Context) {
    msg, ok := ctx.Value(KeyMsg("msg")).(string)
    if !ok {
        return
    }

    fmt.Println("got msg:", msg)
}

您可以将函数 dosomething 移动到另一个包中,然后将其称为 packagename.dosomething ,它不会改变任何内容。

理论要掌握,实操不能落!以上关于《context中的值不能在不同的包中传递吗?》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

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