typescript 阿比 - 4.ts
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 阿比 - 4.ts相关的知识,希望对你有一定的参考价值。
@Component({
selector: 'app-products',
templateUrl: 'List of products...',
})
export class ProductsComponent implements OnInit {
products$: Observable<Product[]>;
isLoading$: Observable<boolean>;
constructor(
private productsQuery: ProductsQuery,
private productsService: ProductsService
) { }
ngOnInit() {
this.fetchProducts();
this.products$ = this.productsQuery.selectAll();
this.isLoading$ = this.productsQuery.selectLoading();
}
private fetchProducts() {
if (this.productsQuery.isPristine) {
this.productsService.get();
}
}
}
以上是关于typescript 阿比 - 4.ts的主要内容,如果未能解决你的问题,请参考以下文章
typescript 阿比 - 3.ts
typescript 阿比 - 1.ts
typescript 搜索4.ts
typescript 1.8-4.ts
typescript 键盘4.ts
typescript CV-4.ts