此解决方案不使用硬编码模板,您可以编译嵌入在 API 响应中的 Angular 表达式。
步骤 1.
安装此指令:https ://github.com/incuna/angular-bind-html-compile
步骤 2.在模块中包含指令。
angular.module("app", ["angular-bind-html-compile"])
步骤 3.使用模板中的指令:
<div bind-html-compile="letterTemplate.content"></div>
结果:
控制器对象
$scope.letter = { user: { name: "John"}}
JSON 响应
{ "letterTemplate":[
{ content: "<span>Dear {{letter.user.name}},</span>" }
]}
HTML 输出 =
<div bind-html-compile="letterTemplate.content">
<span>Dear John,</span>
</div>
作为参考,这里是相关的指令:
(function () {
'use strict';
var module = angular.module('angular-bind-html-compile', []);
module.directive('bindHtmlCompile', ['$compile', function ($compile) {
return {
restrict: 'A',
link: function (scope, element, attrs) {
scope.$watch(function () {
return scope.$eval(attrs.bindHtmlCompile);
}, function (value) {
element.html(value);
$compile(element.contents())(scope);
});
}
};
}]);
}());