I am currently working on my graduation project for my apprenticeship and I would like to ask a question about it.
I am developing an Ionic App which basically calculates leasing instalements for customers. The app gets information from another project via HTTP Request (the return is a dictionary) and it automatically saves it as a ZoneAwarePromise. My goal is to get the information and show it in a list on the mainpage. How can I achieve this? Thank you for your help. This is the code sample I use for the http request:
const transport = new HTTPTransport("url");
const client = new Client(new RequestManager([transport]));
const result = client.request({method: "getRaten", params: { logname: logname, pwd: pwd, werte}});
1 post - 1 participant