本文整理汇总了TypeScript中@eg/core/pcrud.service.PcrudService.retrieveAll方法的典型用法代码示例。如果您正苦于以下问题:TypeScript service.PcrudService.retrieveAll方法的具体用法?TypeScript service.PcrudService.retrieveAll怎么用?TypeScript service.PcrudService.retrieveAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@eg/core/pcrud.service.PcrudService
的用法示例。
在下文中一共展示了service.PcrudService.retrieveAll方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: ngOnInit
ngOnInit() {
this.pcrud.retrieveAll('crad', {order_by: {crad: 'label'}})
.subscribe(attr => {
this.bibAttrDefs.push(attr);
this.bibAttrDefEntries.push({id: attr.name(), label: attr.label()});
});
}
示例2: getCopyStatuses
getCopyStatuses(): Promise<any> {
if (this.copyStatuses) {
return Promise.resolve(this.copyStatuses);
}
return this.pcrud.retrieveAll('ccs', {}, {atomic: true})
.toPromise().then(stats => {
this.copyStatuses = stats;
return stats;
});
}
示例3: open
open(args: NgbModalOptions): Promise<boolean> {
if (this.cancelReasons.length === 0) {
this.pcrud.retrieveAll('ahrcc', {}, {atomic: true}).toPromise()
.then(reasons => {
this.cancelReasons =
reasons.map(r => ({id: r.id(), label: r.label()}));
});
}
return super.open(args);
}
示例4: getBibSources
getBibSources(): Promise<IdlObject[]> {
if (this.bibSources) {
return Promise.resolve(this.bibSources);
}
return this.pcrud.retrieveAll('cbs',
{order_by: {cbs: 'id'}},
{atomic: true}
).toPromise().then(sources => {
this.bibSources = sources;
return sources;
});
}
示例5: getAttrDefs
getAttrDefs(dtype: string): Promise<IdlObject[]> {
if (this.attrDefs[dtype]) {
return Promise.resolve(this.attrDefs[dtype]);
}
const cls = (dtype === 'bib') ? 'vqbrad' : 'vqarad';
const orderBy = {};
orderBy[cls] = 'id';
return this.pcrud.retrieveAll(cls,
{order_by: orderBy}, {atomic: true}).toPromise()
.then(list => {
this.attrDefs[dtype] = list;
return list;
});
}