如何构建mgo查询?

时间:2014-02-15 17:03:26

标签: go mgo revel

我正在用revel和mgo做一个小项目(练习),但是当我构建查询时,我的搜索功能出了问题。代码看起来像这样:

conditions := make(bson.M, 0)
conditions["status"] = bson.M{"$ne": "delete"}

if item, ok := paramsPost["title"]; ok {
    if item[0] != "" {
        conditions["title"] = bson.RegEx{Pattern: item[0]}
    }
}
if item, ok := paramsPost["from_date"]; ok {
    if item[0] != "" {
        conditions["publishdate"] = bson.M{}
        fromDate, _ := time.Parse("2006-01-02", item[0])
        conditions["publishdate"]["$gte"] = fromDate.Unix()
    }
}

if item, ok := paramsPost["to_date"]; ok {
    if _, ok := conditions["publishdate"]; !ok {
        conditions["publishdate"] = bson.M{}
    }
    if item[0] != "" {
        toDate, _ := time.Parse("2006-01-02", item[0])
        conditions["publishdate"]["$lte"] = toDate.Unix()
    }
}

我收到了一些错误信息:

invalid operation: conditions["publishdate"]["$gte"] (index of type interface {})

我知道我做错了,但我不知道为什么,以及如何解决。有人可以帮帮我吗?感谢

1 个答案:

答案 0 :(得分:4)

bson.Mmap[string]interface{}http://godoc.org/labix.org/v2/mgo/bson#M

所以,在

conditions["publishdate"]["$gte"] = fromDate.Unix()

在地图中查找interface{}时,您需要从bson.Mpublishdate执行类型断言。

相反,您可以将代码重构为类似

的代码
publishdate:= bson.M{}
// ... your logic goes here
conditions["publishdate"] = publishDate

保存不必要的地图查找并输入断言。