假設您有一個由多個不同類型的嵌入式節點組成的工作流程。由於節點是不同類型的,我想在這裏使用Golang接口,並與下面上來:如何在mgo(Go)中使用界面類型作爲模型?
type Workflow struct {
CreatedAt time.Time
StartedAt time.Time
CreatedBy string
Nodes []Node
}
type Node interface {
Exec() (int, error)
}
type EmailNode struct {
From string
To string
Subject string
Body string
}
type TwitterNode struct {
Tweet string
Image []byte
}
func (n *EmailNode) Exec() (int, error){
//send email
return 0, nil
}
func (n *TwitterNode) Exec() (int, error) {
//send tweet
return 0, nil
}
這些工作流程都存儲在MongoDB中,我有它的樣本種子數據。使用氧化鎂,當我試圖找到一個工作流程(鑑於其ID):
w = &Workflow{}
collection.FindID(bson.ObjectIdHex(id)).One(w)
我得到的錯誤 - 類型bson.M的價值是不能分配給類型的節點。
這對我來說也感覺有點奇怪,如何將mgo解組嵌入到沒有任何類型信息的Go結構中。可能是我需要從另一個角度來看問題。
任何建議將不勝感激。
太棒了!這樣可行。整齊。 – shardnit 2014-09-25 19:10:14
你可以舉一個setBSON函數如何實現的例子嗎?我不知道如何解碼字符串。 – e3matheus 2017-09-19 16:45:15