想读取mongodb中爬虫存储的数据,用nodejs的mongoose工具读不到数据,求解?

发布于 2022-09-04 09:56:25 字数 2022 浏览 14 评论 0

db.js

var mongoose = require('mongoose'),
    DB_URL = 'mongodb://localhost:27017/result';

mongoose.connect(DB_URL);
//连接成功
mongoose.connection.on('connected', function(){
    console.log('Mongoose connection open to ' + DB_URL);
})
//连接异常
mongoose.connection.on('error', function(err){
    console.log('Mongoose connection error: ' + err);
})
//连接断开
mongoose.connection.on('disconnected', function(){
    console.log('Mongoose connection disconnected');
})

module.exports = mongoose;

model.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);

function update(conditions, update){
    Lagou.update(conditions, update, function(err, res){
        if(err) console.log('Error:' + err);
        else console.log('Res:' + res);
    })
}

function del(conditions){
    Lagou.remove(conditions, function(err, res){
        if(err) console.log('Error:' + err);
        else console.log('Res:' + res);
    })
}

function find(conditions, callback){
    Lagou.find(conditions, function(err, res){
        if(err) console.log('Error:' + err);
        else callback(res);
    })
}

module.exports = {
    find: find,
    del: del,
    update: update
}

lagou.js

var db = require('./model.js');

db.find({'name': "仁维"}, function(res){
    console.log(res);
})

这是之前爬虫爬到的数据

clipboard.png

运行node lagou.js之后拿到的数据是空

clipboard.png

求解,是schema的问题吗?

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

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

发布评论

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

评论(2

满天都是小星星 2022-09-11 09:56:25

请参考下面的这个帖子:

https://segmentfault.com/q/10...

var User = mongoose.model('User', userSchema,'user');

这个部分容易出现问题;请对应修改过来。

供参考。

过潦 2022-09-11 09:56:25

看起来没有问题。
是同一个集合吗?

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