mgo (Go) 中作為模型的介面類型
問題:
問題:在一個🎜>問題:
在一個🎜>問題:<code class="go">type NodeWithType struct { Node Node `bson:"-"` Type string }</code>
<code class="go">type Workflow struct { CreatedAt time.Time StartedAt time.Time CreatedBy string Nodes []NodeWithType }</code>
<code class="go">func (nt *NodeWithType) SetBSON(r bson.Raw) error { // Decode the type string typeStr := r.String() // Create a new Node value based on the type string switch typeStr { case "EmailNode": nt.Node = &EmailNode{} case "TwitterNode": nt.Node = &TwitterNode{} default: return errors.New("Unknown node type") } // Unmarshal the remaining data to the Node value bsonBytes, err := bson.Marshal(r.Body) if err != nil { return err } return bson.Unmarshal(bsonBytes, nt.Node) }</code>
以上是如何使用介面透過 mgo 對 MongoDB 中不同類型的嵌入式節點進行建模?的詳細內容。更多資訊請關注PHP中文網其他相關文章!