mongoose.model创建集合

1. module.exports = mongoose.model(‘DepotLoc’, schema);

mongoose是通过model来创建mongodb中对应的集合(collection)

DepotLoc不会出现在数据库中,在数据库中会将集合描述小写,并且如果这个集合名尾巴没有s,数据库内部处理,会形成depotLocs集合
代码如下:

var mongoose = require('mongoose');
var Device = require('./device');
var uuid = require('uuid');
var Schema = mongoose.Schema;

var now = function () {
  return new Date();
};

// Exports
var schema = new Schema({
  group: { type: String, required: true, index: true },
  location: { type: String, required: true, index: true },
  depotid: { type: String, required: true, index: true },
  deviceid: { type: Schema.Types.ObjectId, ref: "Device" },
  prince: { type: Number },
  volume: { type: Number },
  img: { type: String },
  isvacant: { type: Boolean },
  apikey: { type: String, unique: true, default: uuid.v4 },
  createdAt: { type: Date, index: true, default: now }
});

schema.static('', function(){

});


module.exports = mongoose.model('DepotLoc', schema);


2. 使用robo3T可视化本地数据库,你可以看到数据库结构,

确实新建了一个depotLocs集合

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值