I generate a lot of data in my controller products
I have a link like the following on the products page
<td><a href="/#/getProducts/{{name}}/status" {{ ProductName }}</a></td>
my data is calculated in the products controller
$scope.data = myData
Now instead of re-calculating everything from scratch on the status page and status controller I want to pass myData to the status controller
I also don't want to show the data in the URL
I'm not able to do so. any hints/resources are appreciated