docs(aio): improve tutorial next-steps prose/links
This commit is contained in:
parent
03610526e5
commit
9449eff6fd
|
@ -101,3 +101,5 @@ Each step is motivated with a requirement that you've likely
|
|||
met in many applications. Everything has a reason.
|
||||
|
||||
Along the way, you'll become familiar with many of the core fundamentals of Angular.
|
||||
|
||||
Start now by building a simple [hero editor](tutorial/toh-pt1 "The Hero Editor").
|
||||
|
|
|
@ -287,6 +287,6 @@ Here's the complete `app.component.ts` as it stands now:
|
|||
|
||||
|
||||
## The road ahead
|
||||
In the [next tutorial page](tutorial/toh-pt2), you'll build on the Tour of Heroes app to display a list of heroes.
|
||||
In the [next tutorial page](tutorial/toh-pt2 "Master/Detail"), you'll build on the Tour of Heroes app to display a list of heroes.
|
||||
You'll also allow the user to select heroes and display their details.
|
||||
You'll learn more about how to retrieve lists and bind them to the template.
|
||||
|
|
|
@ -463,4 +463,4 @@ Your app should look like this <live-example></live-example>.
|
|||
## The road ahead
|
||||
You've expanded the Tour of Heroes app, but it's far from complete.
|
||||
An app shouldn't be one monolithic component.
|
||||
In the [next page](tutorial/toh-pt3), you'll split the app into subcomponents and make them work together.
|
||||
In the [next page](tutorial/toh-pt3 "Multiple Components"), you'll split the app into subcomponents and make them work together.
|
||||
|
|
|
@ -464,4 +464,4 @@ That's not sustainable.
|
|||
Data access should be refactored to a separate service
|
||||
and shared among the components that need data.
|
||||
|
||||
You’ll learn to create services in the [next tutorial](tutorial/toh-pt4) page.
|
||||
You’ll learn to create services in the [next tutorial](tutorial/toh-pt4 "Services") page.
|
||||
|
|
|
@ -609,7 +609,7 @@ The Tour of Heroes has become more reusable using shared components and services
|
|||
The next goal is to create a dashboard, add menu links that route between the views, and format data in a template.
|
||||
As the app evolves, you'll discover how to design it to make it easier to grow and maintain.
|
||||
|
||||
Read about the Angular component router and navigation among the views in the [next tutorial](tutorial/toh-pt5) page.
|
||||
Read about the Angular component router and navigation among the views in the [next tutorial](tutorial/toh-pt5 "Routing and Navigation") page.
|
||||
|
||||
{@a slow}
|
||||
|
||||
|
|
|
@ -1373,5 +1373,5 @@ Your app should look like this <live-example></live-example>.
|
|||
You have much of the foundation you need to build an app.
|
||||
You're still missing a key piece: remote data access.
|
||||
|
||||
In the next page,
|
||||
In the [next tutorial page](tutorial/toh-pt6 "Http")
|
||||
you’ll replace the mock data with data retrieved from a server using http.
|
||||
|
|
Loading…
Reference in New Issue