Reputation: 93
Hello can any one please tell me how to send on form data to another by clicking submit button using angular JS.
Upvotes: 0
Views: 646
Reputation: 4329
There are three ways to do that.
While I will stick to the SPA flow for my angular website and use a service to pass on the data. There is also a way to assign data in $rootScope but that is just not a good practice to pass on data from one page to another.
Upvotes: 4