Is there any kind of equivalent to ui-router's ui-sref?
As of now all my ng-href
's are hard-coded string literals, ex;
<a ng-href="#/users/{{user.id}}/{{user.fullname}}"></a>
which makes me shiver whenever I see it.
Are there any built-in functionality in ngRoute
that handles this, or do I have to make my own service? Are there any other solutions?