I want to pass some values from one view to another in Angularjs using ui-Router. I don\'t want to use $rootScope to save data or create a new services ( as I have many view
Easiest way would be to store all the data directly into the $routeParams either through route or query string.
routeUrl: /foods/:quality/:stars
then in your controller you can access
$routeParams.quality - $routeParams.stars