首先,建立一個數據庫儲存使用者資訊。在這個資料庫中建立一個名為users的集合,並插入一條使用者資訊。當前沒有users集合,mongodb會直接建立它。>db.users.insert({"userId":1,"name":"tom","email":"[email protected]"})查詢資訊可以使用find或者findOne,區別在於findOne只會返回一個結果。db.users.findOne({"userId":1})返回的結果:{"_id":ObjectId("5413be6e9e1c9f9c4386756d"),"userId":1,"name":"tom","email":"[email protected]"}驅動程式編輯package.json,新增對於mongodb的引用。{"name":"express-api","version":"0.0.1","dependencies":{"express":"2.5.9","ejs":"0.4.2","mongodb":"1.4.1"}}
首先,建立一個數據庫儲存使用者資訊。在這個資料庫中建立一個名為users的集合,並插入一條使用者資訊。當前沒有users集合,mongodb會直接建立它。>db.users.insert({"userId":1,"name":"tom","email":"[email protected]"})查詢資訊可以使用find或者findOne,區別在於findOne只會返回一個結果。db.users.findOne({"userId":1})返回的結果:{"_id":ObjectId("5413be6e9e1c9f9c4386756d"),"userId":1,"name":"tom","email":"[email protected]"}驅動程式編輯package.json,新增對於mongodb的引用。{"name":"express-api","version":"0.0.1","dependencies":{"express":"2.5.9","ejs":"0.4.2","mongodb":"1.4.1"}}