91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Nodejs結合MongoDB

發布時間:2020-06-10 08:07:19 來源:網絡 閱讀:575 作者:duoku 欄目: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");

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

梓潼县| 彩票| 格尔木市| 万载县| 景泰县| 象山县| 民丰县| 永川市| 台山市| 政和县| 乌兰浩特市| 宁阳县| 循化| 积石山| 古浪县| 曲麻莱县| 上高县| 杂多县| 深州市| 大田县| 崇左市| 工布江达县| 弋阳县| 鄂州市| 安岳县| 昌宁县| 江津市| 南溪县| 石棉县| 焦作市| 北安市| 福建省| 巢湖市| 微博| 鲁甸县| 荔浦县| 石首市| 汝阳县| 青河县| 江津市| 读书|