Creating a Mobile Client / Server Calculator
- Create a calculator where the user enters two numbers and submits for a server to calculate
- The server will do the calculation and your application will show the result for the user
- The server is already implemented here: link
-
This server expects two values via GET (x and y) and returns the sum of them.
-
An example request would be: link
- Soon, your task will be to create only the client side using Ionic
I already created the app in ionic, but how do I play the url of this server in my code? From what I understand, I have to import an HTTP API, and install a provider ... But how do you do that?