Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试运行该leaderboard示例,并且已将db.players. 但是,在运行时leaderboard,不会出现任何名称。甚至没有在代码中手动指定的那些。mongod在跑。
leaderboard
db.players
mongod
这可能是因为您插入的是db.players,而不是Players (Players被定义为 leaderboard.js 顶部的流星集合)
Players
如果是这种情况,请将您的插入语句更改为:
db.players.insert...
至
Players.insert...