使用 Golang 應用將資料持久化到 MongoDB 的方法:建立一個新的 Golang 專案。安裝 MongoDB 驅動程式。連接到 MongoDB 實例。建立一個集合。插入資料。查詢資料。更新數據。刪除資料。
將資料持久化到MongoDB 的Golang 應用程式
MongoDB 是一個功能強大的非關係型資料庫,經常與Golang應用一起使用。本指南將向您展示如何使用 Golang 的標準函式庫和第三方套件將資料持久化到 MongoDB。
先決條件
步驟
1. 建立一個新的Golang 專案
go mod init myapp
2. 安裝MongoDB 驅動程式
#go get go.mongodb.org/mongo-driver/mongo
3. 連線到MongoDB 實例
import ( "context" "fmt" "log" "go.mongodb.org/mongo-driver/mongo" ) func main() { // 设置连接字符串 connectionString := "mongodb://localhost:27017" // 建立连接 client, err := mongo.Connect(context.TODO(), options.Client().ApplyURI(connectionString)) if err != nil { log.Fatal(err) } // 延迟关闭连接 defer client.Disconnect(context.TODO()) // ... }
#4. 建立一個集合
// 设置待创建的集合名称 collectionName := "users" // 获取集合对象 collection := client.Database("myDatabase").Collection(collectionName)
##5. 插入資料
// 创建一个文档 user := map[string]interface{}{ "name": "John Doe", "age": 30, } // 将文档插入集合中 insertResult, err := collection.InsertOne(context.TODO(), user) if err != nil { log.Fatal(err) } // 打印插入后的 ID fmt.Printf("Inserted document with ID: %v\n", insertResult.InsertedID)
6. 查詢資料
// 设置要查询的过滤器 filter := bson.D{{"name", "John Doe"}} // 查询集合 cursor, err := collection.Find(context.TODO(), filter) if err != nil { log.Fatal(err) } // 迭代查询结果 for cursor.Next(context.TODO()) { var result map[string]interface{} err := cursor.Decode(&result) if err != nil { log.Fatal(err) } fmt.Printf("%v\n", result["name"]) } // 关闭游标 cursor.Close(context.TODO())
#7. 更新資料
// 设置要更新的过滤条件 filter := bson.D{{"name", "John Doe"}} // 设置要更新的字段和值 update := bson.D{{"$set", bson.D{{"age", 31}}}} // 更新文档 updateResult, err := collection.UpdateOne(context.TODO(), filter, update) if err != nil { log.Fatal(err) } // 打印修改的文档数目 fmt.Printf("%v document(s) updated\n", updateResult.ModifiedCount)
8. 刪除資料
// 设置要删除的过滤条件 filter := bson.D{{"name", "John Doe"}} // 删除文档 deleteResult, err := collection.DeleteOne(context.TODO(), filter) if err != nil { log.Fatal(err) } // 打印删除的文档数目 fmt.Printf("%v document(s) deleted\n", deleteResult.DeletedCount)
以上是如何與golang框架整合?的詳細內容。更多資訊請關注PHP中文網其他相關文章!