I have an C# MVC
tag helper, which generates menu items for me. However I want these URLs
to be dynamic
based on a value set by angular
. So my backend generates a URL like this:
/blah/blah/{{vm.value}}
If I have an angular controller which has a property of value, will the link be updated everytime the value changes. It's not working for me. angular seems to be ignoring the {{vm.value}}
because it was generated on the backend
and is not in my template.