本文整理汇总了TypeScript中multer-gridfs-storage.on函数的典型用法代码示例。如果您正苦于以下问题:TypeScript on函数的具体用法?TypeScript on怎么用?TypeScript on使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了on函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: cb
metadata: (req, file, cb) => cb(new Error(), null),
logLevel: 'all',
root: (req, file, cb) => cb(null, 'unicorns')
});
let urlCtr = new MulterGridfsStorage({
url: '',
filename: (req, file, cb) => cb(null, ''),
chunkSize: (req, file, cb) => cb(null, 1),
identifier: (req, file, cb) => cb(null, ''),
metadata: (req, file, cb) => cb(new Error(), {}),
logLevel: 'all',
root: (req, file, cb) => cb(null, '')
});
// Other properties are optional
let gfsOnly = new MulterGridfsStorage({
gfs: new Grid()
});
let urlOnly = new MulterGridfsStorage({
url: ''
});
function noop() {
}
// Extends event emitter
gfsCtr.on('connection', noop);
urlCtr.addListener('conection', noop);
gfsOnly.removeAllListeners('conection');
示例2: MulterGridfsStorage
connectionOpts: {},
file: (req, file) => {
return {
metadata: file.mimetype
};
}
};
// All options
const dbFileStorage = new MulterGridfsStorage(opt1);
const urlFileStorage = new MulterGridfsStorage(opt2);
// Other properties are optional
const promiseStorage = new MulterGridfsStorage({
db: dbPromise
});
const dbStorage = new MulterGridfsStorage({
db
});
const urlStorage = new MulterGridfsStorage({
url: 'mongodb://yourhost:27017/database'
});
// Extends event emitter
promiseStorage.on('connection', () => {});
urlStorage.addListener('conection', () => {});
dbStorage.removeAllListeners('conection');