- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
问题的 2 个部分。
1是mongodb查询本身,接下来是mgo中怎么做。
如何查询slug: "general"
的1个category类型的文档(结果应该是category类型)?
我选择这个布局的原因是因为我读到了 mongodb 的优势是嵌入式“结构”的性能但是我担心我必须让“类别”和“论坛”成为自己的集合并重写很多代码,我会希望避免这种情况,因为客户端的每个 View 无论如何都需要访问这些模型,并且在每个新页面加载(类别和论坛)上都会导致 1-2 个额外的查询,并且使用 mongodb 的优势将消失。
接下来的问题是,我将如何更新或删除一个特定的嵌入文档?
有没有一种方法可以直接从 mongodb 获取类别文档,而无需分离文档或在 Go 中编写 find、update、delete 函数,以及如何?
这个结构:
{
"_id" : ObjectId("5303d1a2d6194c0f27000001"),
"name" : "darko",
"description" : "darko",
"subdomain" : "darko",
"domain" : "mango.dev",
"created" : ISODate("2014-02-18T21:33:22.115Z"),
"category" : "Brains",
"owner" : "52b1d74dd6194c0646000002",
"members" : [
"52b1d74dd6194c0646000002"
],
"categories" : [
{
"_id" : ObjectId("5303d1a2d6194c0f27000003"),
"name" : "Admin and Moderator Area",
"slug" : "admin-and-moderator-area",
"adminonly" : true,
"membersonly" : false,
"forums" : [
{
"_id" : ObjectId("5303d1a2d6194c0f27000005"),
"name" : "Admin Discussion",
"slug" : "admin-discussion",
"text" : "This is the main forum for administrative topics."
}
]
},
{
"_id" : ObjectId("5303d1a2d6194c0f27000002"),
"name" : "General",
"slug" : "general",
"adminonly" : false,
"membersonly" : false,
"forums" : [
{
"_id" : ObjectId("5303d1a2d6194c0f27000004"),
"name" : "General Discussion",
"slug" : "general-discussion",
"text" : "Talk about everything and anything here in this general discussion forum"
}
]
}
]
}
或继续:
Community struct {
Id bson.ObjectId `bson:"_id,omitempty" json:"id"`
Name string `json:"name"`
Description string `bson:",omitempty" json:"description"`
Subdomain string `bson:",omitempty" json:"subdomain"`
Domain string `json:"domain"`
Created time.Time `json:"created"`
Category string `json:"category"`
Owner interface{} `json:"owner"` //userid
Members []interface{} `json:"members"` //userid
Moderators []interface{} `bson:",omitempty" json:"moderators"` //userid
Logo string `bson:",omitempty" json:"logo"` // relative path to file
Stylesheets []string `bson:",omitempty" json:"stylesheets"` // absolute path to files
Javascripts []string `bson:",omitempty" json:"javascripts"` // absolute path to files
Categories []*Category `json:"categories"`
}
Category struct {
Id bson.ObjectId `bson:"_id,omitempty" json:"id"`
Name string `json:"name"`
Slug string `json:"slug"`
AdminOnly bool `json:"-"`
MembersOnly bool `json:"-"`
Forums []*Forum `json:"forums"`
}
Forum struct {
Id bson.ObjectId `bson:"_id,omitempty" json:"id"`
Name string `json:"name"`
Slug string `json:"slug"`
Text string `json:"text"`
Moderators []interface{} `bson:",omitempty" json:"moderators"` //userid
}
最佳答案
1.
目前,MongoDB 没有内置方法返回子文档,您只能返回文档的投影。话虽如此,您仍然可以使用投影找到您要查找的数据。
MongoDB manual给你一个非常相似的例子。您应该进行的查询是:
db.coll.find({}, {categories:{ $elemMatch: {"slug":"general"}}})
2.
使用 mgo
,投影部分使用 Select 处理。 mgo documentation状态:
func (q *Query) Select(selector interface{}) *Query
Select enables selecting which fields should be retrieved for the results found.
没试过,应该是这样的:
err := collection.Find(nil).Select(bson.M{"categories": bson.M{"$elemMatch": bson.M{"slug": "general"}}}).One(&result)
为了得到嵌套的 Category 对象,你可以让 result
成为一个包含结构:
type CategoryContainer struct {
Categories []Category{} // Or even [1]Category{} in this case
}
然后简单地获取类别:
category := result.Categories[0]
3.
关于更新子文档,已经有很好的帖子了,比如:
关于mongodb - mgo,mongodb : find one document that is embedded and part of an array,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22507446/
在 C 中: int a[10]; printf("%p\n", a); printf("%p\n", &a[0]); 产量: 0x7fff5606c600 0x7fff5606c600 这是我所期望
我一直在尝试运行此循环来更改基于数组的元素的位置,但出现以下错误。不太确定哪里出了问题。任何想法或想法!谢谢。 var population = [[98, 8, 45, 34, 56], [9, 1
我正在尝试获取一个 Ruby 数组数组并将其分组以计算其值。 数组有一个月份和一个 bool 值: array = [["June", false], ["June", false], ["June"
所以我们的目标是在遇到某个元素时将数组分割成子数组下面的示例 array.split("stop here") ["haii", "keep", "these in the same array bu
在this问题已经回答了两个表达式是相等的,但在这种情况下它们会产生不同的结果。对于给定的 int[] 分数,为什么会这样: Arrays.stream(scores) .forEac
我认为我需要的是哈希数组的数组,但我不知道如何制作它。 Perl 能做到吗? 如果是这样,代码会是什么样子? 最佳答案 perldoc perldsc是了解 Perl 数据结构的好文档。 关于arra
我遇到了这个问题,从 API 中我得到一个扩展 JSON,其中包含一个名为坐标的对象,该对象是一个包含数组 o 数组的数组。 为了更清楚地看这个例子: "coordinates": [
postgres 中有(v 9.5,如果重要的话): create table json_test( id varchar NOT NULL, data jsonb NOT NULL, PRIM
我用 echo "${array[@]}" 和 echo "${array[*]}" 得到了相同的结果。 如果我这样做: mkdir 假音乐; touch fakemusic/{Beatles,Sto
我正在尝试创建 typealias 对象的数组数组 - 但我收到“表达式类型不明确,没有更多上下文”编译错误。这是我的代码: typealias TestClosure = ((message: St
如果您在 Python 中创建一维数组,使用 NumPy 包有什么好处吗? 最佳答案 这完全取决于您打算如何处理数组。如果您所做的只是创建简单数据类型的数组并进行 I/O,array模块就可以了。 另
当我将数组推送到只有一个数组作为其唯一元素的数组数组时,为什么会得到这种数据结构? use v6; my @d = ( [ 1 .. 3 ] ); @d.push( [ 4 .. 6 ] ); @d.
在 Julia 中,我想将定义为二维数组向量的数据转换为二维矩阵数组。 如下例所述,我想把数据s转换成数据t,但是至今没有成功。 我该如何处理这个案子? julia> s = [[1 2 3], [4
C 没有elementsof 关键字来获取数组的元素数。所以这通常由计算 sizeof(Array)/sizeof(Array[0]) 代替但这需要重复数组变量名。1[&Array] 是指向数组后第一
所以,假设我有一个像这样的(愚蠢的)函数: function doSomething(input: number|string): boolean { if (input === 42 || in
我有以下数组: a = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16] 我将它用于一些像这样的视觉内容: 1 2 3 4 5 6 7 8 9 10
我想知道数组中的 .toList 与 .to[List] 之间有什么区别。我在spark-shell中做了这个测试,结果没有区别,但我不知道用什么更好。任何意见? scala> val l = Arr
我很难获得完全相同对象的多个元素的当前元素索引: $b = "A","D","B","D","C","E","D","F" $b | ? { $_ -contains "D" } 替代版本: $b =
我正在尝试使用来自我的 API 的 v-select 执行 options,我将数据放在数组数组中。 Array which I got from API 它应该是一个带有搜索的 select,因为它
这个问题在这里已经有了答案: String literals: pointer vs. char array (1 个回答) 4 个月前关闭。 当我执行下一个代码时 int main() {
我是一名优秀的程序员,十分优秀!