If you need to display raw HTML content to the page view with AngularJS, you can use the $sce service that comes with AngularJS. $sce stands for Strict Contextual Escaping. The service has trustAsHTML method with take some arbitrary text or HTML.
Example HTML content is
$scope.html = '<b>render me please</b>';
The html code is
<p class="text">{{html}}</p>
from the user side the html will display as
<b>render me please</b>
By using the below filter, the text will displayed as
render me please
The filter is
angular.module('test').filter('RenderHtmlText', function($sce) { return function(val) { return $sce.trustAsHtml(val); }; });
$sce is a service that provides Strict Contextual Escaping services to AngularJS.
You might also like:
How To Get Your Blogs Posts Using Blogger API30-07-2017 blogger api json php |
Time Sorting Ascending or Descending Order in Javascript19-07-2017 Javascript ascending order descending order |
How to redirect one page to another page in php20-03-2017 redirect php |
How to use http-post request in node js14-03-2017 http-post module node js |
Get previous date from given date in javascript06-03-2017 date javascript previous date |