Angular - ngIf

The ngIf statement is used to setup an if statement on an html page.

You use it to stop blocks of html from being rendered.

Note: Newer versions of Angular have a replacement construct.

Read More

Angular - Route Configuration and Configuration

I created my first Microservice, a simple note capturing microservice. The next step is to integrate the microservice into multiple angular applications. When I do this I would need give each application a code (ApplicationCode) and the Microservice would need to use this code to pass application specific data to the right applications.

So, my Microservice now takes an ApplicationCode to help discern which application is requesting the data.

I added code to my first application, and what I’m deciding is that the next application will contain code very similar to the first. The differences may be a bit of styling, but when launching code hitting these microservices, passing in a ApplicationCode would simplify things in general.

This page shows some of the coding used for passing parameters into the microservice based modules.

Read More