• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/11

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

11 Cards in this Set

  • Front
  • Back

The Angular NgModule this provides a service that lets you define a navigation path among the different application states and view hierarchies in your app.

Router

The router maps URL-like paths to these instead of pages.

views

When a user performs an action, such as clicking a link, that would load this in the browser.

new page

the router intercepts the browser's behavior, and shows or hides these.

view hierarchies

If the router determines that the current application state requires particular functionality, and the module that defines it has not been loaded, the router can do this to the module on demand.

lazy-load

The router interprets a link URL according to your app's view these.

navigation rules and data state

You can do this to new views when the user clicks a button, selects from a drop box, or in response to some other stimulus from any source.

navigate

The Router logs activity in the browser's this, so the back and forward buttons work as well.

history journal

To define navigation rules, you associate these with your components.

navigation paths

A path uses this syntax that integrates your program data, in much the same way that template syntax integrates your views with your program data.

URL-like

You can then apply program this to choose which views to show or to hide, in response to user input and your own access rules.

logic