是ng2應用程序所需的AppComponent類嗎? Ng2是組件驅動的,但我想知道是否需要一個特別命名爲AppComponent的組件。是否ng2專門連線在名爲AppComponent的類中啓動它的流程?ng2中app.component.ts(AppComponent)的用途?
1
A
回答
0
您可以將名稱更改爲MyComponent
,並使用它,而引導
bootstrap(MyComponent, [...]).catch(err => console.error(err));
1
這是不需要使用AppComponent名稱,但其推薦一個。每個角度的應用程序應該有一個組件,可以boostrapped這是AppComponent(它也可以有不同的名稱)。
Angular2團隊提供了一些指導方針。你可以看看這裏 - https://angular.io/docs/ts/latest/guide/style-guide.html。這與您的問題不直接相關。
相關問題
- 1. AppComponent中的錯誤
- 2. Angular 2中需要app.component.ts嗎?
- 3. RouteParams在AppComponent
- 4. Angular2其中是指定的AppComponent指令
- 5. 從app.component.ts角度路由
- 6. app.component.ts&app.component.html有什麼區別
- 7. app.component.ts沒有項目由tsconfig.json
- 8. XSLT中$的用途
- 9. 在ng2-select2中使用AJAX
- 10. 允許重命名AppComponent?
- 11. 進口NG2的自舉(NG2 RC2 - bootstrap3)
- 12. ng2-translate使用localstorage
- 13. 使用nativescript-ng2-magic
- 14. Ang2中的ng2-pagination 2
- 15. Haskell中的{ - ## - }的用途
- 16. 用途中的String.intern()的
- 17. MulticastSocket中的joinGroup的用途
- 18. NG2-CKEditor的 「CKEDITOR」
- 19. nl_socket_set_cb()在libnl中的用途
- 20. asp.net中global.asax的用途
- 21. COM中GUID的用途
- 22. css中-ms-filter的用途
- 23. xtext中antlr的用途
- 24. Gradle中buildscript塊的用途
- 25. Realm中findFirst()的用途 - Android
- 26. css3中@keyframes的用途
- 27. Python中@符號的用途?
- 28. pyVmomi中pyVim的用途
- 29. C#中bool *的用途
- 30. SSRS中dbo.Policies表的用途
感謝rashfmnb,提供清晰。你猜你認爲絕大多數ng2架構師都使用默認名稱「AppComponent」嗎?看起來這個名字是相當一般和描述性的,並且爲將來可能維護應用的開發者提供了一個熟悉的約定。 – user6604655
感謝疹如果你想添加您的意見作爲答案,然後我將它標記爲答案 – user6604655