Angular sanitize / ng-bind-html not working?

AngularjsNg Bind-HtmlNgsanitize

Angularjs Problem Overview


I've got a repeater set up and can get data to display as long as there is no html within it.

I've included angular-sanitize.js and have tried using ng-bind-html

But nothing is displayed within the span, only within the ng-bind-html attribute. So it looks like sanitise isn't working,

I read that this needs to be added to the app dependencies but am not sure where to do so.

I've just been working through the tut on the angular site so only have a very basic controller set up at the minute.

Angularjs Solutions


Solution 1 - Angularjs

  1. You need to include the angular-sanitize.js http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular-sanitize.js

  2. Add 'ngSanitize' to you module dependencies > var myApp = angular.module('myApp', ['ngSanitize']);

  3. Don't use the {{}} in the attribute > <h1 ng-bind-html="item.title"></h1>

  4. Don't use $sce.trustAsHtml()

Solution 2 - Angularjs

My solution to this was to download the js file from here

http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular-sanitize.js

I had been using the one I found in the angular git repo,

Solution 3 - Angularjs

I experienced a similar issue but mine was a bit weird. Only input tags were not rendered while everything else including

<h3></h3>
<em></em> 

did. After several hours i realised that apart from

angular-sanitize.min.js 

I needed to add

textAngular-sanitize.min.js

to my project before the input tags worked. It was really frustrating so I hope this helps anyone in a similar situation

Solution 4 - Angularjs

Encountered this issue when using a directive and the solution was not using "replace" in the code.

`ng-html-bind' was being used on a div in the templateUrl view

appDirectives.directive('helpText', [function () {
return {
	restrict: 'E',
	//replace: true, // With this uncommented it does not work!
	scope: {
        displayText: '='
	},
	templateUrl: '/web/form/helptext',
	link: function (scope) {

	}

};
}]);

Solution 5 - Angularjs

My solution was the opposite of Seglespaan. It was to use the Bower version of Angular Sanitize.

bower install angular-sanitize

https://github.com/angular/bower-angular-sanitize

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTim WebsterView Question on Stackoverflow
Solution 1 - AngularjsDanView Answer on Stackoverflow
Solution 2 - AngularjsTim WebsterView Answer on Stackoverflow
Solution 3 - Angularjscrazy_abdulView Answer on Stackoverflow
Solution 4 - AngularjsAmicableView Answer on Stackoverflow
Solution 5 - Angularjsskribbz14View Answer on Stackoverflow