我有一个父组件(CategoryComponent),一个子组件(videoListComponent)和一个ApiService。
原文链接:https://www.f2er.com/angularjs/145402.html我有大部分工作正常,即每个组件可以访问json api,并通过observables获取其相关数据。
目前视频列表组件只是获取所有视频,我想过滤这只是特定类别的视频,我实现了这一点通过@Input()传递categoryId给孩子。
CategoryComponent.html
<video-list *ngIf="category" [categoryId]="category.id"></video-list>
这工作,当父类CategoryComponent类别更改,然后categoryId值通过@Input()传递,但我需要检测这个在VideoListComponent和重新请求视频数组通过APIService(与新的categoryId)。
在angular1我会做一个$ watch的变量。什么是最好的办法来处理这个?