本文整理汇总了TypeScript中mongodb.ObjectId类的典型用法代码示例。如果您正苦于以下问题:TypeScript ObjectId类的具体用法?TypeScript ObjectId怎么用?TypeScript ObjectId使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ObjectId类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should return the raw transform object if options field exists and set to true', () => {
let id = new ObjectId();
let coin = {
_id: id,
network: 'regtest',
chain: 'BTC',
mintTxid: '81f24ac62a6ffb634b74e6278997f0788f3c64e844453f8831d2a526dc3ecb13',
mintIndex: 0,
mintHeight: 1,
coinbase: true,
value: 5000000000.0,
address: 'n1ojJtS98D2VRLcTkaHH4YXLG4ytCyS7AL',
script: Buffer.from(''),
wallets: [],
spentTxid: '',
spentHeight: SpentHeightIndicators.unspent
} as ICoin;
const result = CoinStorage._apiTransform(coin, { object: true });
expect(result).to.deep.equal({
_id: id.toHexString(),
mintTxid: '81f24ac62a6ffb634b74e6278997f0788f3c64e844453f8831d2a526dc3ecb13',
network: 'regtest',
chain: 'BTC',
spentTxid: '',
mintHeight: 1,
mintIndex: 0,
spentHeight: SpentHeightIndicators.unspent,
address: 'n1ojJtS98D2VRLcTkaHH4YXLG4ytCyS7AL',
coinbase: true,
confirmations: -1,
script: '',
value: 5000000000.0
});
});
开发者ID:bitpay,项目名称:bitcore,代码行数:35,代码来源:coin.unit.ts
示例2: validateId
static validateId(id: any): boolean {
return ObjectId.isValid(id);
}
开发者ID:Frost-Dev,项目名称:Frost,代码行数:3,代码来源:MongoProvider.ts
示例3: stringifyId
static stringifyId(id: ObjectId): string {
return id.toHexString();
}
开发者ID:Frost-Dev,项目名称:Frost,代码行数:3,代码来源:MongoProvider.ts
注:本文中的mongodb.ObjectId类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论