Better Programming

Advice for programmers.

Follow publication

Member-only story

Modeling Typescript Interfaces to Support Angular HTTP requests

Ivano Di Gese
Better Programming
Published in
5 min readJul 21, 2019
Photo by Negative Space on Pexels

Angular single-page applications use massive Ajax requests to communicate with webservers and retrieve data from databases. In this article, I’ll give a couple of hints about how to manage data response. This will help you set up a good designed layer for your Ajax flows.

The Basics: Observables and HttpClient

From Angular 4 to Angular 8, the framework started to make a massive use of Observables and Promises to handle data fetching from AJAX. Some versions of Angular seemed to prefer Promises, some others Observables, but the goal is basically always the same. We have a Service method, invoked from our Angular Component, and we want to be notified when data from the server pops out.

Promises and Observables are quite different. Keep in mind that Promises are simple objects with fullfilled and rejected possible states, and Observables are “streams” over the requests. Observables are way more versatile if you need to have control of those requests. I won’t spend more time on Promises, but be sure to choose between Observables and Promises very carefully. We’ll focus the discussion on the Observables implementation. We’re focusing on Observables because Observables are presented as the default implementation in the current official Angular documentation for devs.

HTTP JSON Responses: Unstructured Version

When your goal is to fire an Ajax request from an Angular service, you start coding something like this:

The getCandies() method here is very plain and unstructured. We’re using type inference to return to the caller a generic Observable because it’s the return type of the get() method in HttpClient. So, what’s the type handled by…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Ivano Di Gese
Ivano Di Gese

Written by Ivano Di Gese

Passionate IT skills on the run: keep calm, do your stuff and code better

Responses (1)

Write a response