使用facebook的三方库:https://github.com/facebookgo/inject
type C struct{
B *B `inject:""`
}
type B struct{
A *A `inject:""`//这里会根据注入对象的Name字段有选择的进行注入
}
type A struct{
Name string
}
var injectGraph inject.Graph
func main() {
a := A{
name: "hello",
}
a2 := A{
Name: "hello2",
}
c := C{}
err := injectGraph.Provide(//对象提供者
&inject.Object{Value: &a},
&inject.Object{Name: "这里可以给对象一个自定义命名", Value: &a2},
&inject.Object{Value: &c},//这个也需要
)
if err != nil{}
err = injectGraph.Populate()//填充对象到使用了inject标签的结构体字段中
if err != nil{}
fmt.Println(c.B.A.Name)
}
// 通过injectGraph.Objects()可以获取所有设置了Name的待填充对象
func GetObject(name string) interface{} {
for _, o := range injectGraph.Objects() {
if o.Name == name {
return o.Value
}
}
return nil
}
有疑问加站长微信联系(非本文作者)