Hi
I’m starting this the same as 99% of all the other posts on here. I’m new to Ember.Js . I’m building a Ember app that queries an API that I built in Node.js. The node.js api/app is just a simple api that pulls data from a sql database using a stored procedure. The node.js app seems to be working perfectly and returns all expected data.
I’m having lots off issues building the ember app. The EmberApp/user starts with a home page that contains a form. The form has input boxes deepening on what they need to search for. Searching and returning the data seems to be working okay. Not sure if I am doing it the best way possible though.
Where I am having the most issues is returning the data to a new page. I am able to return the data to the same page were the form is without issues. So I guess my 1st question is.
What is the best way to search for data from an api, using a form. Then returning that data to a different page?
Thanks for your help!