標籤:style blog http color os io ar for 資料
基於Nodejs和MongoDB,讀取資料庫中產品的列表
var http = require("http"), mongo = require("mongodb"), events = require("events"); http.createServer(function(req, res) { var products_emitter = new events.EventEmitter(), // 建立到northwind資料庫的連結。相當於use northwind db = new mongo.Db("northwind", new mongo.Server(‘localhost‘, 27017, {}), {}); var listener = function(products) { var html = [], len = products.length; html.push(‘<!DOCTYPE html>‘); html.push(‘<html>‘); html.push(‘<head>‘); html.push(‘<title>Nodejs</title>‘); html.push(‘</head>‘); html.push(‘<body>‘); if(len > 0) { html.push(‘<ul>‘); for(var i = 0; i < len; i++) { html.push(‘<li>‘ + products[i].name + ‘</li>‘); } html.push(‘</ul>‘); } html.push(‘</body>‘); html.push(‘</html>‘); res.writeHead(200, "Content-Type: text/html"); res.write(html.join(‘‘)); res.end(); clearTimeout(timeout); } products_emitter.on(‘products‘, listener); var timeout = setTimeout(function() { products_emitter.emit(‘products‘, []); products_emitter.removeListener(‘products‘, listener); }, 10000); db.open(function() { // 開啟名為products的表 db.collection("products", function(err, collection) { // select * from products 相當於db.products.find() collection.find(function(err, cursor) { cursor.toArray(function(err, items) { products_emitter.emit(‘products‘, items); }); }); }); }); }).listen(8000); console.log("Started");
網上找了上面這段代碼[原文],執行了下,訪問http://127.0.0.1:8000/當然一開始什麼也沒有。
於是往資料庫norhwind 的集合products(collection)插入了兩條資料,shell 命令如下
> use northwindswitched to db northwind> db.products.insert({‘name‘:‘shanshan‘})> db.products.insert({‘name‘:‘sandy‘})
注意不需要預先建立一個集合,在第一次插入資料時候會自動建立。
再次重新整理頁面http://127.0.0.1:8000/,可以看到
Nodejs + MongoDB