I've encountered a challenging scenario where I need to transfer data from one controller to another.
My application functions in the following way:
View 1 -> retrieves users from a JSON array and displays them in a table.
Upon clicking "add user" in View 1, I am directed to View 2.
View 2 -> consists of 2 input fields and a button (for adding a new user).
However, when I return to View 1, the newly added user does not appear as expected.
To simplify things, I have provided a demonstration here - http://plnkr.co/edit/yz6mpplZGh4q5bPDO2bc?p=preview
Any assistance would be greatly appreciated.