Angularjs route with hidden parameters like http post

Can I get hidden parameters like http message with $ location?

The concept of what I think:

$location.param(key, value);
$location.path('/myPLace');
+4
source share
1 answer

I think you like sharing values ​​/ parameters between different routes?

The example from @ mobabur94 works, but the parameter is not hidden.

To save settings between routes, you can use the service. Take a look at this:

Angularjs passing the border between routes

+3
source

All Articles