questions icon indicating copy to clipboard operation
questions copied to clipboard

网关 添加一些数据到context中,micro会序列化到header中 透传下去吗

Open json7 opened this issue 6 years ago • 1 comments

也可以自己直接写入到header透传下去,但是感觉通过context更优雅. 如果没有这个机制,建议加上

json7 avatar Nov 12 '19 07:11 json7

可以,比如:

        ctx := metadata.NewContext(context.Background(), map[string]string{
		"X-User-Id": "john",
		"X-From-Id": "script",
	})

	rsp, err := cl.Hello(ctx, &pb.Request{
		Name: "John",
	})

printfcoder avatar Nov 12 '19 17:11 printfcoder