Top "Angular2-routing" questions

Angular Routing is a built-in feature that enables you to create a Single Page Application (SPA) user interface, where users can navigate to different views without having to reload the entire page from the server every time.

Angular 6 - multiple router outlets

I want to have an Enter-comp. as overview and basically two child-comp. For instance a login- and register-comp. Furthermore I …

angular routing angular2-routing router-outlet
Angular2 Router and Multiple Resolves in one route

In ui-router it's easy to make multiple resolves defined in the route configuration, so let's say something like: export const …

angular angular2-routing
How to change parent variable from children component?

This question is quite simple but I can't get rid of it. I have a <header> in parent …

angular angular2-routing angular-components
Unhandled Promise rejection: Cannot match any routes

When I run this unit test: it('can click profile link in template', () => { const landingPageLinkDe = linkDes[0]; const profileLinkDe = linkDes[1]; …

angular angular2-routing angular2-testing
Angular2 way of converting plain text to url (anchor links)

I sometimes have a component that can receive text like this: text www.website.com But I would like to …

angular typescript angular2-routing angular2-template angular2-directives
Angular 2 Hosted on IIS: HTTP Error 404

I have simple app with one component that expects certain parameters from url. there is only one route in the …

angular iis http-status-code-404 angular2-routing
Angular2: Make route paths case insensitive

I have the following routing configuration. @RouteConfig([ { path: '/home', name: 'Homepage', component: HomepageComponent, useAsDefault: true } ) export class AppComponent { } whenever …

angular angular2-routing
angular 2 azure deploy refresh error : The resource you are looking for has been removed, had its name changed, or is temporarily unavailable

I have an Angular 2 rc-2 app with basic routing implemented.The paths are /path1 which is the default path and /…

angular azure angular2-routing
Angular 2 dynamically set routerLink using a component property

I have created an component that contains a element with a routerLink property which I want to set from a …

javascript angular angular2-routing angular2-template angular2-components