如何检查另一个结构字段中是否存在一个结构字段值

时间:2018-10-01 18:53:05

标签: go data-structures struct iteration

type Bundle struct {
    Name    string   `bson:"name" json:"name"`
    Choices []string `bson:"choices" json:"choices"`
}

type Event struct {
    ID          bson.ObjectId   `bson:"_id,omitempty" json:"_id,omitempty"` 
    Bundle      []Bundle        `bson:"bundle" json:"bundle"`
}

type AttendeeBundle struct {
    Name    string `bson:"name" json:"name"`
    Details string `bson:"details" json:"details"`
}

type Attendees struct {
    ID          bson.ObjectId `bson:"_id,omitempty" json:"_id,omitempty"`
    Bundle      []AttendeeBundle      `bson:"bundle" json:"bundle"`
}

我正在建立一个活动注册平台。该事件包含一个Bundle字段,与会者可以从中选择。例如。各种尺寸或颜色的T恤。

因此,在注册后,我要确保与会者从相应的事件中选择正确的捆绑包。

我知道可以同时为参加者和活动进行迭代,如下所示:

for _ , attendeebundle := range Attendees.Bundle {      
            for _, eventbundle := range Event.Bundle{
                //comparing attendee bundle and event bundle
            }
        }
    }

但是,我认为这太多余了,还有其他更优雅/有效的方法吗?

0 个答案:

没有答案