博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Angular 8] Custom Route Preloading with ngx-quicklink and Angular
阅读量:4983 次
发布时间:2019-06-12

本文共 1157 字,大约阅读时间需要 3 分钟。

In a . That gives you a lot of control over which route to preload and which not, whether it is based on the user's permissions or some runtime app config. In this lesson we're using , a library that drastically simplifies the custom preloading, by automatically loading all visible links on the page.

 

Install:

npm install --save ngx-quicklink

 

Load the module:

import { QuicklinkStrategy, QuicklinkModule } from 'ngx-quicklink';@NgModule({  declarations: [AppComponent, HomeComponent],  imports: [    BrowserModule,    MatSidenavModule,    BrowserAnimationsModule,    QuicklinkModule,    RouterModule.forRoot(      [        {          path: '',          component: HomeComponent        },        {          path: 'nyan',          loadChildren: () =>            import('./nyan/nyan.module').then(m => m.NyanModule)        },        {          path: 'about',          loadChildren: () =>            import('./about/about.module').then(m => m.AboutModule)        }      ],      {        preloadingStrategy: QuicklinkStrategy //PreloadAllModules      }    )  ],  providers: [],  bootstrap: [AppComponent]})

 

转载于:https://www.cnblogs.com/Answer1215/p/11430795.html

你可能感兴趣的文章
HIS项目框架搭建流程
查看>>
Access Control
查看>>
使用mpvue开发小程序教程(一)
查看>>
NOIP2013普及组 -SilverN
查看>>
substring和substr小结
查看>>
onbeforeunload与onunload事件
查看>>
android端的的网络访问
查看>>
escape()、encodeURI()、encodeURIComponent()区别详解
查看>>
retry
查看>>
使用jQuery插件轻松实现动态流动的网页布局
查看>>
[转]6个HelloWorld
查看>>
C调用C++接口
查看>>
Golang系列:抓取网页内容
查看>>
jquery扩展的两个方法与区别 $.extend $.fn.extend
查看>>
CodeForces_937C Save Energy!(贪心)
查看>>
[Gatsby] Install Gatsby and Scaffold a Blog
查看>>
[Recompose] Add Local State to a Functional Stateless Component using Recompose
查看>>
Spring Boot + Spring Data + Elasticsearch实例
查看>>
我的机器学习之旅(一):认识机器学习
查看>>
util包下Timer类的延迟执行
查看>>