当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript mongoose-auto-increment.initialize函数代码示例

本文整理汇总了TypeScript中mongoose-auto-increment.initialize函数的典型用法代码示例。如果您正苦于以下问题:TypeScript initialize函数的具体用法?TypeScript initialize怎么用?TypeScript initialize使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了initialize函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: function

export default function(db: Connection): Model<Document> {
	mongooseAutoIncrement.initialize(db);

	const schema = new Schema({
		createdAt: { type: Date, required: true, default: Date.now },
		cursor: { type: Number },
		followee: { type: Schema.Types.ObjectId, required: true, ref: 'User' },
		follower: { type: Schema.Types.ObjectId, required: true, ref: 'User' }
	});

	// Auto increment
	schema.plugin(mongooseAutoIncrement.plugin, {
		model: 'UserFollowing',
		field: 'cursor'
	});

	return db.model('UserFollowing', schema, 'UserFollowings');
}
开发者ID:Tosuke,项目名称:Misskey-API,代码行数:18,代码来源:user-following.ts

示例2: Schema

/// <reference path="../mongoose/mongoose.d.ts" />
/// <reference path="./mongoose-auto-increment.d.ts" />

import * as autoIncrement from 'mongoose-auto-increment';
import * as mongoose from 'mongoose';
import { Schema } from 'mongoose';

var connection = mongoose.createConnection("mongodb://localhost/myDatabase");

autoIncrement.initialize(connection);

var bookSchema = new Schema({
    author: { type: Schema.Types.ObjectId, ref: 'Author' },
    title: String,
    genre: String,
    publishDate: Date
});

bookSchema.plugin(autoIncrement.plugin, 'Book');
var Book = connection.model('Book', bookSchema);
开发者ID:0815fox,项目名称:DefinitelyTyped,代码行数:20,代码来源:mongoose-auto-increment-tests.ts

示例3: require

import {DatabaseObject} from '../type/model.d.ts'

import * as mongoose from 'mongoose'
import * as autoIncr from 'mongoose-auto-increment'

import {getDatabaseConfig} from '../config'
import {getLogger} from '../lib/logger'

// mongoose promise change
// tslint:disable
mongoose.Promise = require('bluebird')
// tslint:enable

// mongoose plugins initialization
autoIncr.initialize(mongoose.connection) // auto increment

// models
import {AlertModel} from './alert'
import {AttachmentModel} from './attachment'
import {DeliveryModel} from './delivery'
import {PlaceModel} from './place'
import {ProductModel} from './product'
import {UserModel} from './user'
import {OrderModel} from './order'
import {StockModel} from './stock'

export async function initDatabase (): Promise<DatabaseObject> {
  try {
    let mode: string
    mode = process.env.NODE_ENV || 'development'
开发者ID:chipp972,项目名称:stock_manager_api,代码行数:30,代码来源:index.ts

示例4: function

import * as mongoose      from 'mongoose';
import * as autoIncrement from 'mongoose-auto-increment';

mongoose.connect(`mongodb://${global.$g.config.database.connection}`);

let
db = mongoose.connection;
autoIncrement.initialize(db);

db.on('error', function(err){
    console.log(`Connect to mongodb error: ${err}`);
});

db.once('open', function(){
    console.log(`Connect to mongodb successful.`);
});

export {
    db,
    autoIncrement
};
开发者ID:goumang2010,项目名称:NetTxtNote,代码行数:21,代码来源:db.ts


注:本文中的mongoose-auto-increment.initialize函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。