Nodejs + MongoDB

來源:互聯網
上載者:User

標籤: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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.