Vinod Kumar Marupu
Vinod Kumar Marupu

Reputation: 547

Ionic Framework page redirection

Can we develop multiple page application in an Ionic Framework. Like I want to consume a RESTful Webservice which has to get input from the form values and that values append to that URL and the response (data) has to display in other page.

Upvotes: 0

Views: 45

Answers (1)

Dexter
Dexter

Reputation: 2472

Yes, you can do that. The Ionic Framework uses something called angular-ui-router, which allows you to handle the routing necessary for multiple pages. You can find the documentation here. There are some articles regarding the router, here and here.

I would recommend that you create the Ionic application using one of the following commands: ionic start myApp sidemenu or ionic start myApp tabs both of those projects will get you an application with multiple pages/views.

Upvotes: 1

Related Questions