angularjs – 动态电子邮件的Angular $compile模板

我正在尝试在其中加载带有ng-repeats的html模板,然后使用$compile服务来编译它并在电子邮件中使用已编译的html.

问题……好问之前让我设置术语……
绑定占位符:{{customer.name}}
约束力:’john doe’

使用$interpolate我得到实际的绑定值但不适用于ng-repeats.

示例:var html = $interpolate(‘< p> {{customer.name}}< / p>‘)($scope)
返回:’< p> john doe< / p>‘
Ng-repeats不起作用

使用$compile我得到绑定占位符,即{{customer.name}},但我需要的是绑定值’john doe’.

示例:var html = $compile(‘< p> {{customer.name}}< / p>‘)($scope)
返回:’< p> {{customer.name}}< / p>‘

一旦我追加到页面,我就会看到绑定值.但这是用于电子邮件而不是页面加上它具有ng-repeats,$compile可以编译

如何创建一个动态电子邮件模板,在编译后,它会返回带有绑定值的html而不仅仅是绑定占位符,以便我可以将其作为电子邮件发送?

使用$compile是正确的方法.但是,$compile(模板)($scope)不会产生您期望的内插 HTML.它只是将编译的模板链接到要在下一个$摘要期间插值的范围.要获得所需的HTML,您需要等待插值发生,如下所示:
var factory = angular.element('<div></div>');
factory.html('<ul ng-repeat="...">...</ul>');
$compile(factory)($scope);

// get the interpolated HTML asynchronously after the interpolation happens
$timeout(function () {
  html = factory.html();
  // ... do whatever you need with the interpolated HTML
});

(工作CodePen示例:http://codepen.io/anon/pen/gxEfr?editors=101)

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...