-2
使用Angular 2,我如何在不同的組件文件之間使用ngFor數據?使用Angular 2,我如何在不同的組件文件之間使用ngFor數據?
例如我有此在playbar.component.ts文件:
...
<audio
gFor="let audio of sources"
#mediaOne
[vgMedia]="mediaOne"
id="mediaOne"
crossorigin
[src]="currentItem.src">
...
並且這tunes.component.ts模板我有(和已導入上述文件)
...
<ul>
<li *ngFor="let item of sources; let $index = index"
(click)="onClickPlaylistItem(item, $index)"
[class.selected]="item === currentItem">
{{ item.src }}
</li>
</ul>
...
對不起,我是一個角度的noob。
謝謝你,我會檢查出來。 –
這不是必需的。他們可以共享一個由共同依賴項導出的數組。這不是一個好主意,但沒有說你需要一項服務,更不用說那種使用可觀察性的服務。 –