使用mongoose的cursor的问题

发布于 2022-09-04 10:15:40 字数 1580 浏览 9 评论 0

自己测试过成功的样例,自己新建了个集合插入了几条数据:

//testSchema.js
var mongoose = require('./db.js'),
    Schema = mongoose.Schema;

var TestSchema = new Schema({
    name: {type: String},
    age: {type: Number}
})

var TestModel = mongoose.model('stream', TestSchema, 'stream');

var cache = [];
var co = require('co');
co(function*() {
    "use strict";
    const cursor = TestModel.find({}).cursor();
    for (let doc = yield cursor.next(); doc != null; doc = yield cursor.next()) {
        console.log(doc);
    }
});

clipboard.png

数据是可以都拿到的

但是我去试自己爬虫爬到的数据集合,只取4条数据出来,就有问题:

//test.js
var mongoose = require('./db.js'),
    Schema = mongoose.Schema;

var LagouSchema = new Schema({
    name: {type: String},
    cid: {type: Number},
    process: {type: String},
    content: {type: String},
    url: {type: String},
    tag: {type: String},
    total: {type: Number},
    salary: {type: Array}
});


var Lagou = mongoose.model('lagou', LagouSchema, 'lagou');

var co = require('co');

co(function*() {
    "use strict";
    const cursor = Lagou.find({'cid': {$gte:22777, $lte:22780}}).cursor();
    for (let doc = yield cursor.next(); doc != null; doc = yield cursor.next()) {
        console.log(doc);
    }
});

clipboard.png

然后卡这儿就不会动了,代码都是一致的,怎么就取不出数据来呢,求解

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

骄傲 2022-09-11 10:15:40

感觉你遇到的情况是cursor是空的。

检查一下:

1、在mongo下面使用相同的条件查询一下,看是否有返回的文档。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文