node.js - 使用mongoose的cursor的问题
巴扎黑
巴扎黑 2017-04-17 15:52:07
0
1
713

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

//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);
    }
});

数据是可以都拿到的

但是我去试自己爬虫爬到的数据集合,只取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);
    }
});

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

巴扎黑
巴扎黑

모든 응답(1)
迷茫

지금 겪으신 상황은 커서가 비어있는 것 같습니다.

확인해 보세요:

1. 동일한 조건을 사용하여 mongo에서 쿼리하여 반환된 문서가 있는지 확인합니다.

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿