RSS Git Download  Clone
Raw View History
Blames found: 2 Mode: htmlmixed Binary: false


Hang on, we reloading big blames...
<div class="list-item-fix"> <button mat-flat-button color="primary" (click)="loadDefault()">Default request</button> <br/> <br/> <div class="mat-caption">Itt will try to load some random data, based on the default interceptor behavior without using headers.</div> </div> <br/> <mat-divider></mat-divider> <br/> <div class="list-item-fix"> <button mat-flat-button color="primary" (click)="loadCached()">Forced cached request</button> <br/> <br/> <div class="mat-caption">Itt will try to load some random data with cached data. You can see in the browser inspector network tab, that there will be only one request. Here, we use the <code>CachingHeaders.Cache</code> header.</div> </div> <br/> <mat-divider></mat-divider> <br/> <div class="list-item-fix"> <button mat-flat-button color="primary" (click)="loadNonCached()">Forced non-cached request</button> <br/> <br/> <div class="mat-caption">It will try to load some random data without cache. You can see in the browser inspector network tab, that every click will talk to a server and retrieve the new data. Here, we use the <code>CachingHeaders.NoCache</code> header.</div> </div>