我正在嘗試在我的Angular應用程序中創建一個窗口小部件系統,其中每個窗口小部件都是一個組件,其中一些組件與其他組件交互。角度組件溝通
我有圍繞我的所有組件,並調用列表後組件作爲
<app-post-list
[author] = "post_author"
[category] = "post_categories"
[search] = "search_terms"
></app-post-list>
和我的小窗口的blogComponent
<app-widget-search (WidgetSearchEvent)="WidgetSearchEvent($event)"></app-widget-search>
<app-widget-categories (WidgetCategoriesEvent)="WidgetCategoriesEvent($event)"></app-widget-categories>
<app-widget-text></app-widget-text>
<app-widget-recent-posts></app-widget-recent-posts>
<app-widget-recent-comments></app-widget-recent-comments>
因此,一些小部件使用EvenEmmiter的輸出值發送到應用程序後列表,它再次呈現新的帖子列表,並且它工作正常。但現在我想換其他組件side-bar
所有小工具,讓他們都爲:
<app-side-bar></app-side-bar>
但如果我這樣做了EventEmiter方法不工作。其他解決方案?
感謝您的提示,我看到''redux'和'ngrx'的好評,但我從來沒有使用它們,我不知道哪個更好,但這是其他問題,你能通過我一個簡單的教程或什麼? – efirvida
是的。 ngrx是redux模式的實現,但是使用了rxjs的功能。你會發現很多鏈接在這裏https://github.com/ngrx/platform/blob/master/docs/store/README.md – alexKhymenko
但主要結賬他們的示例應用程序https://github.com/ngrx/platform/tree/master/example-app – alexKhymenko