mongo-go-diver 连接数据库,并初始化集合连接 database/mongo.go var CollectionName *mongo.Collection func InitDB(){ ctx, _ := context.WithTimeout(context.Background(), 10*time.Second) client, err := mongo.Connect(ctx, options.Client().ApplyURI(url)) if err != nil { panic(err) } db := clien...