當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript mongoose.plugin函數代碼示例

本文整理匯總了TypeScript中mongoose.plugin函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript plugin函數的具體用法?TypeScript plugin怎麽用?TypeScript plugin使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了plugin函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1:

import * as mongoose from 'mongoose';
import * as mongoose_simple_random from "mongoose-simple-random";

// test compatibility with other libraries - from @types/mongoose
import * as _ from 'lodash';
import * as fs from "fs";

mongoose.Model.findRandom({
    username: { $ne: "DummyUser" },
    rating: {
        $gt: 1,
        $lt: 11,
    },
}, {}, { limit: 1 }, (error, data) => {
    if (error) { console.error("Error!"); } else { console.log("Success!"); }
});

mongoose.plugin(mongoose_simple_random);
開發者ID:AbraaoAlves,項目名稱:DefinitelyTyped,代碼行數:18,代碼來源:mongoose-simple-random-tests.ts

示例2: new

mongoose.createConnection('localhost', 'database', 3000).open('');
mongoose.createConnection('localhost', 'database', 3000, {
  user: 'larry',
  config: {
    autoIndex: false
  }
}).open('');
mongoose.disconnect(cb).then(cb).fulfill;
mongoose.get('test');
mongoose.model('Actor', new mongoose.Schema({
  name: String
}), 'collectionName', true).find({});
mongoose.model('Actor').find({});
mongoose.modelNames()[0].toLowerCase();
new (new mongoose.Mongoose()).Mongoose().connect('');
mongoose.plugin(cb, {}).connect('');
mongoose.set('test', 'value');
mongoose.set('debug', function(collectionName: any, methodName: any, arg1: any, arg2: any) {});
mongoose.STATES.hasOwnProperty('');
mongoose.connection.on('error', cb);
new mongoose.mongo.MongoError('error').stack;
mongoose.SchemaTypes.String;
mongoose.Types.ObjectId;
mongoose.version.toLowerCase();

/*
 * section querystream.js
 * http://mongoosejs.com/docs/api.html#querystream-js
 */
var querystream: mongoose.QueryStream;
querystream.destroy(new Error());
開發者ID:RaySingerNZ,項目名稱:DefinitelyTyped,代碼行數:31,代碼來源:mongoose-tests.ts

示例3: require

import chai = require('chai');
import chaiAsPromised = require('chai-as-promised');
import Datatable, { IQuery } from './datatable';
import { merge } from 'lodash';

const mongoUrl = `mongodb://localhost:4242/test-datatable`;
const mongoose = require('mongoose');
mongoose.plugin(Datatable.init);
const subSchema = new mongoose.Schema({ code: String, description: String });
const subModel = mongoose.model('SubTest', subSchema);
const schema = new mongoose.Schema({ first_name: String, last_name: String, activated: Boolean, position: Number, start_date: Date, sub_schema: { type: 'ObjectId', ref: 'SubTest' } });
const model = mongoose.model('Test', schema);

chai.use(chaiAsPromised);
const expect = chai.expect;

const query: IQuery = {
  draw: '2',
  columns: [
    { data: 'first_name', name: null, searchable: true, orderable: true, search: { value: null, regex: false } },
    { data: 'last_name', name: null, searchable: false, orderable: true, search: { value: null, regex: false } },
    { data: 'activated', name: null, searchable: true, orderable: true, search: { value: null, regex: false } },
    { data: 'position', name: null, searchable: true, orderable: true, search: { value: null, regex: false } },
    { data: 'start_date', name: null, searchable: true, orderable: false, search: { value: null, regex: false } },
    { data: 'sub_schema.code', name: null, searchable: true, orderable: false, search: { value: null, regex: false } }
  ],
  order: [{ column: 3, dir: 'asc' }],
  start: '0',
  length: '10',
  search: { value: null, regex: false }
};
開發者ID:eherve,項目名稱:mongoose-datatable,代碼行數:31,代碼來源:datatable.spec.ts


注:本文中的mongoose.plugin函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。