mgo(Go)에서 모델로 사용되는 인터페이스 유형
문제:
시나리오에서 다양한 유형의 워크플로우 및 내장 노드와 관련된 MongoDB의 노드 모델링 인터페이스를 mgo와 함께 사용하면 오류가 발생합니다. mgo가 유형 정보 없이 포함된 Node 문서를 역마샬링할 수 없기 때문에 오류가 발생합니다.
해결 방법:
이 제한을 극복하려면 Node 유형을 모두 보유하는 구조체를 정의하는 것이 좋습니다. 및 관련 유형 정보:
<code class="go">type NodeWithType struct { Node Node `bson:"-"` Type string }</code>
Workflow 구조체 내에서 NodeWithType 구조체 배열을 사용하여 노드를 저장합니다.
<code class="go">type Workflow struct { CreatedAt time.Time StartedAt time.Time CreatedBy string Nodes []NodeWithType }</code>
데이터를 올바르게 디코딩하려면 SetBSON 함수를 구현합니다. on NodeWithType:
<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는 NodeWithType 구조체에 저장된 유형 정보를 기반으로 포함된 노드를 올바르게 역마샬링할 수 있습니다.
위 내용은 인터페이스를 사용하여 mgo를 사용하여 MongoDB에서 다양한 유형의 임베디드 노드를 모델링하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!