0
如何在等待數據顯示時顯示微調框?在等待數據時顯示加載組件
是否有方法將自定義標記(來自微調組件)放置在我正在等待數據的HTML模板中?
我的項目是基於Angular Drupal POC
我的文章組成的名單看起來是這樣的:
search() {
this.sub = this.nodeService.getNodes({ q: this.q })
.subscribe(
res => {
this.nodes = this.filteredNodes = res;
this.totalItems = this.nodes.length;
}
);
}