彼らのウェブサイトで失敗するコードは、実際のMongoDBインスタンスで機能します:
> db.posts.insert({title: "Hello", tags: ["one", "five"]});
> db.posts.insert({title: "World", tags: ["one", "three"]});
> db.posts.distinct("tags");
[ "one", "three", "five"]
奇妙な。
彼らのウェブサイトで失敗するコードは、実際のMongoDBインスタンスで機能します:
> db.posts.insert({title: "Hello", tags: ["one", "five"]});
> db.posts.insert({title: "World", tags: ["one", "three"]});
> db.posts.distinct("tags");
[ "one", "three", "five"]
奇妙な。