使用gopkg.in/mgo.v2作为字符串在golang中自定义mongodb命令

时间:2018-04-05 10:46:18

标签: mongodb go mgo

我想知道,无论如何都要运行我自己的命令(或查询),我在go中使用“mgo”构建为字符串变量。

这样的事情:

c := session.DB(DBNAME).C(COLLECTION)
c.RUN_COMMAND_AS_STRING("find({username:'vahid'})")

2 个答案:

答案 0 :(得分:1)

  

无论如何都要运行我自己的命令(或查询),我在go中使用“mgo”构建为字符串变量。

您可以调用MongoDB find command,并将查询过滤器的字符串解析为map[string]interface{}

例如:

db := session.DB("databaseName")

queryString := `{"username":"sergio"}`
var filter map[string]interface{} 
err = json.Unmarshal([]byte(queryString), &filter)

result := bson.M{}
err = db.Run(bson.D{{"find", "collectionName"}, {"filter", filter}}, &result)
fmt.Println(result)

或者,您可以使用MongoDB Aggregation Pipeline,而不是使用find(),而不是使用pipeString := `[{"$match":{"username":"sergio"}}, {"$project":{"newfield":"$username"}}]` pipe := []bson.M{} err = json.Unmarshal([]byte(pipeString), &pipe) coll := session.DB("databaseName").C("collectionName") response := []bson.M{} err = coll.Pipe(pipe).All(&response) fmt.Println(response)

例如:

property var <my property>

答案 1 :(得分:0)

以下是我喜欢使用的内容:

func dbInsert(collection string, insert bson.M, session *mgo.Session) error {
    c := session.DB(your_DB).C(collection)
    err := c.Insert(insert)
    return err
}

func dbUpsert(collection string, selector bson.M, update bson.M, session *mgo.Session) (*mgo.ChangeInfo, error) {
    c := session.DB(your_DB).C(collection)
    info, err := c.Upsert(selector, update)
    return info, err
}

func dbFindOne(collection string, findBson bson.M, selectBson bson.M, session *mgo.Session) (map[string]interface{}, error) {
    c := session.DB(your_DB).C(collection)
    getMap := make(map[string]interface{})
    err := c.Find(findBson).Select(selectBson).One(&getMap)
    return getMap, err
}

func dbFindAll(collection string, findBson bson.M, selectBson bson.M, session *mgo.Session) (map[string]interface{}, error) {
    c := session.DB(your_DB).C(collection)
    getMap := make(map[string]interface{})
    err := c.Find(findBson).Select(selectBson).All(&getMap)
    return getMap, err
}

func dbUpdate(collection string, selector bson.M, update bson.M, session *mgo.Session) error {
    c := session.DB(your_DB).C(collection)
    setBson := bson.M{};
    setBson["$set"] = update;
    //
    updateError := c.Update(selector, setBson)
    //
    return updateError
}

func dbRemoveOne(collection string, selector bson.M, session *mgo.Session) error {
    c := session.DB(your_DB).C(collection)
    removeError := c.Remove(selector)
    return removeError
}

func dbRemoveAll(collection string, selector bson.M, session *mgo.Session) (*mgo.ChangeInfo, error) {
    c := session.DB(your_DB).C(collection)
    removeInfo, removeError := c.RemoveAll(selector)
    return removeInfo, removeError
}

以下是查询的示例查询:

//FIND ONE:
employeeInfo, err := dbFindOne("employees", bson.M{"name": "john"}, bson.M{"salary": 1, "homeCity": 1}, mongo_session)

if err != nil {
    fmt.Println("Error getting employee info: ", err)
}else{
    //you can get the salary as an int:
    salary := employeeInfo["salary"].(int)

    //or get their homeCity as a string:
    homeCity := employeeInfo["homeCity"].(string)
}

例如,在“雇员”集合中找到名为“john”的员工的“薪水”。

代码段中的所有方法与dbFindOne()几乎完全相同。

希望这有帮助!