官方文档
https://pkg.go.dev/go.mongodb.org/mongo-driver/mongo
下载地址
https://www.mongodb.com/try/download/community
打开客户端
mongo.exe
创建数据库
use golang_db;
创建集合
db.createCollection("student");
下载驱动
go get go.mongodb.org/mongo-driver/mongo
package main
import (
"context"
"fmt"
"log"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
var client *mongo.Client
func initDB() {
// 设置客户端连接配置
clientOptions := options.Client().ApplyURI("mongodb://localhost:27017")
// 连接到MongoDB
var err error
c, err := mongo.Connect(context.TODO(), clientOptions)
if err != nil {
log.Fatal(err)
}
// 检查连接
err = c.Ping(context.TODO(), nil)
if err != nil {
log.Fatal(err)
}
fmt.Println("MongoDB 连接成功")
client = c
}
func main() {
initDB()
}
运行结果:
[Running] go run "e:\golang开发学习\go_pro\test.go"
MongoDB 连接成功
[Done] exited with code=0 in 2.819 seconds
MongoDB中的JSON文档存储在名为BSON(二进制编码的JSON)的二进制表中。与其他将JSON数据存储为简单字符串和数字的数据库不同,BSON编码扩展了JSON表示,使其包含额外的类型,如int、long、date、浮点数和decimal128。这使得应用程序更容易可靠地处理、排序和比较数据。
连接MongoDB地Go驱动程序中有两大类型表示BSON数据:D
和Raw
。
类型D
家族被用来简洁地构建使用本地Go类型地BSON对象。这对于构造传递给MongoDB地命令特别有用。D
家族包括四大类:
要使用BSON,需要先导入下面的包:
go.mongodb.org/mongo-driver/bson
下面是一个使用D
类型构建地过滤器文档的例子,它可以用来查找name字段与‘张三’或‘李四’匹配的文档:
bson.D{
{
"name",
bson.D{
{
"$in",
bson.A{
"张三","李四"},
}},
}}
Raw
类型家族用于验证字节切片。还可以使用Lookup()
从原始类型检索单个元素。如果不想将BSON反序列化成另一种类型的开销,那么这是非常有用的。
本文只使用
D
类型。
type Student struct {
Name string
Age int
}
方法:
func (coll *Collection) InsertOne(ctx context.Context, document interface{
},
opts ...*options.InsertOneOptions) (*InsertOneResult, error)
实例演示:
package main
import (
"context"
"fmt"
"log"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
var client *mongo.Client
func initDB() {
// 设置客户端连接配置
clientOptions := options.Client().ApplyURI("mongodb://localhost:27017")
// 连接到MongoDB
var err error
c, err := mongo.Connect(context.TODO(), clientOptions)
if err != nil {
log.Fatal(err)
}
// 检查连接
err = c.Ping(context.TODO(), nil)
if