Currently working with Angular 4, I have a JSON structure like this:
{"Data":[{"View":"<a href="testurl.com">View</a>"]}
When trying to bind
Data.View("<a href="testurl.com">View</a>")
to an HTML <td>
, the result in the table is displaying the entire string <td><a href="testurl.com">View</a></td>
instead of <td>
View
</td>