Skip to content

Instantly share code, notes, and snippets.

@maxkoretskyi
Created December 21, 2017 09:41
Show Gist options
  • Save maxkoretskyi/20d5bc2e0469e10aa7048c140699ed86 to your computer and use it in GitHub Desktop.
Save maxkoretskyi/20d5bc2e0469e10aa7048c140699ed86 to your computer and use it in GitHub Desktop.
export class AppComponent {
response: Observable<any>;
constructor(private backend: HttpXhrBackend) {}
request() {
const req = new HttpRequest('GET', 'https://jsonplaceholder.typicode.com/posts/1');
this.response = this.backend.handle(req);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment