使用ng-bind-html和textAngular

时间:2017-11-08 06:07:05

标签: angularjs ng-bind-html textangular

我在我的应用程序中创建了一项功能,其中可以复制现有发票的内容以创建新的新发票。所有其他字段都被复制。但是,“客户留言”这个字段并没有以某种方式显示出来。我使用文字角度为客户添加“备注”。

var clc = require("cli-color");
var mapping = {
  log: clc.blue,
  warn: clc.yellow,
  error: clc.red
};

["log", "warn", "error"].forEach(function(method) {
  var oldMethod = console[method].bind(console);
  console[method] = function() {
    oldMethod.apply(
      console,
      [mapping[method](new Date().toISOString())]
      .concat(arguments)
    );
  };
});

这可能是什么问题?

2 个答案:

答案 0 :(得分:1)

上面缺少

文字角度指令

<div  text-angular flex-xl="" ng-if="documentEntity.noteToCustomer" ....>...</div>

添加一个吸引人,以便清楚地理解..

答案 1 :(得分:0)

在textangular的文档中,有关使用ng-bind-html的说法。请尝试使用ta-bing