Home > Web Front-end > JS Tutorial > body text

How Angular CLI generates routes

php中世界最好的语言
Release: 2018-06-14 10:34:28
Original
1264 people have browsed it

This time I will show you how Angular CLI generates routes, and what are the precautions for Angular CLI to generate routes. The following is a practical case, let's take a look.

Generate routes for the application.

Create a project first:

ng new my-routing --routing
Copy after login

You can see that two module.

Look at the routing module:

Look at the app module:

AppRoutingModule has been imported.

Look at app.component.html again:

##router-outlet has been written. Very good.

Generate two more components below:

ng g c dashboard
ng g c order
Copy after login

Then set the routing in app-routing.module:

Modify the html again:

Run the application: ng serve -o

Yeah. No problem.

For the situation where there are multiple modules in an application.

Generate another module, and bring the routing module ( You can first use the -d parameter to view the file to be generated):

ng g m admin --routing
Copy after login

In the admin module, create an admin component:

ng g c admin
ng g c admin/email -m admin
ng g c admin/user -m admin
Copy after login
actually The -m parameter of the two commands can be removed, because the path admin/ has been specified, so it will be declared in the admin module by default instead of the app module.

will be needed later Modify app.module:

Add the admin module.

Then modify admin.component.html and add router-outlet:

Then modify admin-routing.module.ts:

Run: ng serve -o

Directly enter the address: http://localhost:4200/ admin

can see:

and enter the URL: http://localhost:4200/admin/email

and you will see To:

So no problem.

Generate Gurad.

ng g guard xxx
Copy after login
I believe you have already read the case in this article After mastering the method, please pay attention to other related articles on the php Chinese website for more exciting content!

Recommended reading:

How Angular CLI implements Build

JS makes a floating layer effect pop up when the mouse passes over text

The above is the detailed content of How Angular CLI generates routes. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!