码迷,mamicode.com
首页 > 数据库 > 详细

Nodejs + MongoDB

时间:2014-09-06 00:58:02      阅读:330      评论:0      收藏:0      [点我收藏+]

标签: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 northwind
switched to db northwind
> db.products.insert({‘name‘:‘shanshan‘})
> db.products.insert({‘name‘:‘sandy‘})

 

注意不需要预先创建一个集合,在第一次插入数据时候会自动创建。

再次刷新页面http://127.0.0.1:8000/,可以看到

bubuko.com,布布扣

 

Nodejs + MongoDB

标签:style   blog   http   color   os   io   ar   for   数据   

原文地址:http://www.cnblogs.com/sandycoding/p/3958887.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!