码迷,mamicode.com
首页 > Web开发 > 详细

nodejs之egg框架mongoose应用

时间:2019-08-01 15:52:23      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:client   fun   plugin   module   nod   string   default   schema   return   

config/plugin.js

mongoose: {
        enable: true,
        package: ‘egg-mongoose‘
}

config/config.default.js

config.mongoose = {
        client: {
            url: ‘mongodb://devuser:devuser123@127.0.0.1:27017/db_co_assist‘,
            options: {}
        }
 };

app/model/test.js

‘use strict‘;
module.exports = app => {
    const mongoose = app.mongoose;
    const Schema = mongoose.Schema;
    const TestSchema = new Schema({
        name: {
            type: String,
        },
        age: {
            type: Number,
        },
        __v: {
            type: Number
        }
    });
    return mongoose.model(‘Test‘, TestSchema, ‘test‘);
};

更新文档

let conditions = {
            _id: ‘5d4287eb6884ad1c30cc97b1‘
        };
        let update = {
            name: ‘测试8888888888888‘,
            age: 100,
            __v: 100102
        };
        this.ctx.model.Test.update(conditions, update, function (err) {
            if (err) {
                console.error(err);
            }
        });

nodejs之egg框架mongoose应用

标签:client   fun   plugin   module   nod   string   default   schema   return   

原文地址:https://blog.51cto.com/limeixiong/2425637

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!