
committed by
Alex Rickabaugh

parent
702e17cfe2
commit
e1ac2efe4a
@ -1,4 +1,4 @@
|
||||
# Introduction to components
|
||||
# Introduction to components and templates
|
||||
|
||||
A *component* controls a patch of screen called a *view*.
|
||||
For example, individual components define and control each of the following views from the [Tutorial](tutorial):
|
||||
|
@ -1,4 +1,4 @@
|
||||
# HttpClient
|
||||
# Communicating with backend services using HTTP
|
||||
|
||||
Most front-end applications communicate with backend services over the HTTP protocol. Modern browsers support two different APIs for making HTTP requests: the `XMLHttpRequest` interface and the `fetch()` API.
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Providers
|
||||
# Providing dependencies in modules
|
||||
|
||||
A provider is an instruction to the [Dependency Injection](/guide/dependency-injection) system on how to obtain a value for a dependency. Most of the time, these dependencies are services that you create and provide.
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Routing and navigation
|
||||
# In-app navigation with routing
|
||||
|
||||
The Angular **`Router`** enables navigation from one [view](guide/glossary#view) to the next
|
||||
The Angular **`Router`** enables navigation from one [view](guide/glossary#view "View definition") to the next
|
||||
as users perform application tasks.
|
||||
|
||||
This guide covers the router's primary features, illustrating them through the evolution
|
||||
@ -3306,7 +3306,7 @@ The `redirectUrl` property stores the URL that the user wanted to access so you
|
||||
|
||||
<div class="alert is-helpful">
|
||||
|
||||
To keep things simple, this example redirects unauthenticated users to `/admin`.
|
||||
To keep things simple, this example redirects unauthenticated users to `/admin`.
|
||||
|
||||
</div>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Schematics
|
||||
# Generating code using schematics
|
||||
|
||||
A schematic is a template-based code generator that supports complex logic.
|
||||
It is a set of instructions for transforming a software project by generating or modifying code.
|
||||
|
Reference in New Issue
Block a user