Http
Creating Get Request
<ng-container *http="let status get 'https://...'">
{{ status }}
</ng-container><ng-container *http="let status get 'https://...' with options">
{{ status }}
</ng-container>Creating Post Request
<ng-container *http="let status post 'https://...' send body">
{{ status }}
</ng-container><ng-container *http="let status post 'https://...' send body with options">
{{ status }}
</ng-container>Creating Delete Request
Creating Head Request
Creating Options Request
Creating Patch Request
Creating Put Request
Last updated