How to represent an array with mixed types

你。 提交于 2019-12-07 01:26:00

问题


I am constructing an aggregation pipeline query with the $substr command from MongoDB but I don't know how to represent the array it requires in Go with the mgo driver because it contains different types of values (string, int).

Here is the query in javascript:

[ {$group: {"_id": {"dt": {"$substr": ["$dt",0,6]}}}} ]

What this is trying to do is get the substring of dt (from the previous stage of aggregation) with starting index 0 and ending index 6.

In Go i got:

[]bson.M{"$group": bson.M{"_id": bson.M{"dt": bson.M{"$substr": ["$dt",0,6]}}}}}

but ["$dt",0,6] is not a correct representation and everything I tried seems to fail.


回答1:


You can represent these values using a slice of type []interface{}:

    l := []interface{}{"$dt", 0, 6}

If you find the syntax a little dirty, you can easily define a local type to make it look nicer:

    type list []interface{}
    l := list{"$dt", 0, 6}


来源:https://stackoverflow.com/questions/19055037/how-to-represent-an-array-with-mixed-types

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!