繁体   English   中英

获取Node.js和MongoDB中的收集数据

[英]get collection data in nodejs and mongodb

请告诉我,我如何使用客户端上的主干应用程序以及服务器端的nodejs + mongodb创建REST API。

我是nodejs的新手,无法理解所有基本知识。

仅举例来说,我需要收集朋友。 在我的客户应用中,我说

var collection = new Backbone.Collection.exted({ 
  model: model,
  url: '/api/friends'
});
collection.fetch();

好的,在服务器上(nodejs + express),我可以使用app.get('/ api / friends',friends.get);收听此请求。

在“朋友”模块中,我具有“获取”功能。 它连接到数据库,尝试从«friends»集合中获取数据(如果不存在集合,则必须创建它)。 如果collection为空,则函数必须初始化向vk.com(社交网络)服务器的数据请求。

/*
 * GET friends
 */
var https = require('https'),
  Db = require('mongodb').Db,
  Server = require('mongodb').Server;

var client = new Db('data', new Server('127.0.0.1', 27017, {})),
  friends;

function getAllFriends(err, collection) {
  if (!collection.stats()) {
    https.get('https://api.vk.com/method/friends.get?access_token=' + global['access_token'], function (d) {
      var chunk = '',
        response;
      d.on('data', function (data) {
        chunk += data;
      });

      d.on('end', function () {
        response = JSON.parse(chunk).response;
        response.forEach(function (friend) {
          collection.insert(friend, function (err, docs) {
            if (err) console.log(err);
          });
        });
      }).on('error', function (e) {
        console.error(e);
      });
    });
  }

  friends = collection.find({}, {
    limit: 1000
  }).toArray(function (err, docs) {
    return docs;
  });
}

exports.get = function (req, res) {
  client.open(function (err, pClient) {
    client.collection('friends', getAllFriends);
    res.send(friends);
  });
};

但是此代码不起作用。 我不知道为什么。

/node_modules/mongodb/lib/mongodb/connection/server.js:524
        throw err;
              ^
TypeError: Cannot read property 'noReturn' of undefined
    at Cursor.nextObject.commandHandler (/node_modules/mongodb/lib/mongodb/cursor.js:623:17)
    at Db._executeQueryCommand (/node_modules/mongodb/lib/mongodb/db.js:1702:5)
    at g (events.js:192:14)
    at EventEmitter.emit (events.js:126:20)
    at Server.Base._callHandler (/node_modules/mongodb/lib/mongodb/connection/base.js:130:25)
    at Server.connect.connectionPool.on.server._serverState (/node_modules/mongodb/lib/mongodb/connection/server.js:517:20)
    at MongoReply.parseBody (/node_modules/mongodb/lib/mongodb/responses/mongo_reply.js:127:5)
    at Server.connect.connectionPool.on.server._serverState (/node_modules/mongodb/lib/mongodb/connection/server.js:476:22)
    at EventEmitter.emit (events.js:96:17)
    at _connect (/node_modules/mongodb/lib/mongodb/connection/connection_pool.js:175:13)

也许这段代码没有在需要时创建集合?

也许我做错了任何事,所以您可以给我一个很好的链接,以阅读nodejs或mongo中的教程。

感谢您的建议,对不起,请您说我的英语。

有很多代码在这里行不通。 以这个为例:

 if (!collection.stats()) {
    fetchFriends().forEach(function (friend) {
      collection.insert(friend, function (err, docs) {
        if (err) console.log(err);
      });
    });
  }

  friends = collection.find({}, {
    limit: 1000
  }).toArray(function (err, docs) {
    return docs;
  });
}

首先,您无法使用fetchFriends做到这一点。 该函数不返回任何内容,所有工作均在异步回调中完成。

其次,如果它为空,则您仍在触发直接查找的调用,而不必等到插入结果完成。

甚至呼叫链的开头也坏了:

exports.get = function (req, res) {
  client.open(function (err, pClient) {
    client.collection('friends', getAllFriends);
    res.send(friends);
  });
};

您不能只在调用client.colleciton之后调用res.send ,您需要在getAllFriends中完成工作后在回调中执行此操作。

整个工作过程中普遍缺乏对异步代码的理解,我认为现在不必担心节点/ mongo教程,而是先更多地使用节点,然后看看异步库并保证直到您完成为止。适应异步。

我不知道这段代码应该做什么。

  • 减少正在调试的代码量;
  • 清楚地找出不能给您期望的东西;
  • 使用console.log

您可能首先会发现:

exports.get = function (req, res) {
  client.open(function (err, pClient) {
    client.collection('friends', getAllFriends);
    res.send(friends);
  });
};

不起作用,因为变量“ friends”不是您期望的那样。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM