我正在尝试加载 html 片段并在 div 标签中显示。所以我写了一个简单的指令:
myDirectives.directive('myRpt', function () {
'use strict';
return {
restrict: 'A',
scope: true,
link: function (scope, elem, attrs, ctrl) {
var htmlExpr = attrs.myRpt;
scope.$watch(htmlExpr, function (newHtml) {
if (newHtml) {
elem.html(newHtml);
}
}, false);
}
};
});
在 html 页面中使用如下:
<div my-rpt="report">
</div>
现在在控制器中我有:
$http.get('api/v1/general_ledger', { params: { q: { filter: [
{ 'name': 'begin_date', 'op': '==', 'val': $scope.criteria.beginDate },
{ 'name': 'end_date', 'op': '==', 'val': $scope.criteria.endDate }]
}}}).then(
function (resp) {
$scope.report = resp.data;
},
function (resp) {
//TODO: show error message
}
);
上面的代码有效,但我不确定它是否足够好。例如,$scope.report 可能包含非常大的字符串/html 内容,但我猜浏览器会有自己的解析副本。此外,一般而言,编写业务报告以及在需要时生成 pdf、excel 文件等的好方法是什么?