HTML编码的字符串在AngularJS中无法正确翻译 [英] HTML encoded String not translating correctly in AngularJS

查看:41
本文介绍了HTML编码的字符串在AngularJS中无法正确翻译的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个这样的HTML编码字符串:

I have an HTML encoded string like this:

Sign up and get <span class="strong">Something for     FREE!</span>

当我在模板中使用ngSanitize和ng-bind-html时,如下所示:

When I use ngSanitize and ng-bind-html in my template like this:

<p ng-bind-html="someText"></p>

我取回HTML解码的字符串:

I get back the HTML decoded string:

Sign up and get <span class="strong">Something for Free!</span>

但是它实际上是在浏览器中显示HTML解码的字符串,而不是正确呈现HTML.

But it literally shows the HTML decoded string in browser, instead of rendering the HTML correctly.

如何让它在DOM中呈现正确的HTML?

How can I have it render the correct HTML in the DOM?

推荐答案

您可以先解码html字符串.这是一个有效的 plunker 示例.

You can decode the html string first. Here's a working plunker example.

angular.module('app', ['ngSanitize'])
  .controller('ctrl', ['$scope', '$sanitize', function($scope, $sanitize){
    $scope.someText = htmlDecode("Sign up and get &lt;span class=&quot;strong&quot;&gt;Something for     FREE!&lt;/span&gt;");

    function htmlDecode(input){ 
      var e = document.createElement('div');
      e.innerHTML = input;
      return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue;
    }
}]);

**解码功能取自答案.

** Decode function taken from this answer.

这篇关于HTML编码的字符串在AngularJS中无法正确翻译的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆