<script>
angular.module('module', []);
angular.module('module').controller('hello', function($scope) {
$scope.obj = {
"text": "<u>HelloWorld</u>"
};
});
</script>
<body>
<div ng-app='module' ng-controller='hello'>
Current:{{obj.text}}
<br>
<br> Expected:<u>HelloWorld</u>
</div>
</body>
I am trying to read an object stored in a JSON and then print it on my web page.
I have provided a link to the code above.
I am expecting the output to be a string "HelloWorld" which is underline.
ps:
- I cannot edit the JSON
- obj is the object that is being fetched, I could not share the JSON so i have used a hardcoded value.