英文:
How to use $mod operator from mongodb in Golang
问题
我检查了在Mongo中使用$mod
运算符的用法,但是我找不到如何使用Golang进行相同查询的方法。
在Mongo中的用法:
{fieldName:{$mod:[24,0]}}
期望在Golang中的用法。
英文:
I checked the usage of $mod
operator in mongo, but I could not find how to query the same using Golang.
Usage in mongo:
{fieldName:{$mod:[24,0]}}
Expecting the usage in Golang
答案1
得分: 1
你可以直接将其翻译为 bson.M
对象:
bson.M{"fieldName": bson.M{"$mod": []int{24, 0}}}
英文:
You can directly translate that to a bson.M
object:
bson.M{"fieldName":bson.M{"$mod":[]int{24,0}}}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论