0
我不想爲每個組件註冊Router_Directives。使用角度路由器rc3在全局註冊路由器指令
我想這樣做,全球像我一樣以前:
import { RouterConfig ,Router, ActivatedRoute, ROUTE_PROVIDERS} from '@angular/router';
bootstrap(AppComponent, [APP_ROUTER_PROVIDERS, HTTP_PROVIDERS, ROUTE_PROVIDERS ]);
但ROUTE_PROVIDERS不存在/出口路由器模塊。
我該怎麼用RC3路由器做到這一點?
我假設你正在嘗試使用路由器3.0.0-alpha7? - 在這種情況下,我不認爲存在ROUTE_PROVIDERS,但是有一個provideRouter函數是爲了取得它的位置......當然,它仍然在alpha –
是的,請查看我們的選項[here](https:/ /angular.io/docs/ts/latest/api/#!?apiFilter=router#stq=router&stp=1),並比較路由器和路由器deporaded –
是,因爲我寫在標籤router3! https://angular.io/docs/js/latest/api/router/index/provideRouter-function.html可以工作,我稍後再嘗試。 – Elisabeth