I am new to AngularJs. I have a details page where I display the link like below:
<a href='/device-summary/"+ full.link.href+"'>"+ data_to_be_displayed+"</a>
In the above link, the full.link.href
points to another host url i.e, http://www.hostname.port/list/items/12. I want the full.link.href
to be handled in my routed defined inside the controller. How can I get this. Please let me know how to define the config inside the controller?
full.link.href
in the controller – Pradeep May 5 '14 at 14:05