我正在使用导出表插件 https://github.com/Epotignano/angular-export-table。 我添加了模块" portal"但是我收到了一个错误
这是我的依赖代码
(function () {
angular.module('portal', [
'ui.router',
'ceibo.components.table.export',
'portal']);
})();
and smart table plugin code is
(function(){
angular.module('portal')
.directive('stFilteredCollection', function () {
return {
restrict: 'A',
require: '^stTable',
scope: {
stFilteredCollection: '='
},
controller: 'stTableController',
link: function (scope, element, attr, ctrl) {
scope.$watch(function () {
return ctrl.getFilteredCollection();
}, function (newValue, oldValue) {
scope.stFilteredCollection = ctrl.getFilteredCollection();
});
}
};
}); })();
请让我知道我的错误。
答案 0 :(得分:1)
看起来您没有正确加载模块。在您的代码中,您需要删除 <li class='c1'>
<b>Important text</b>
<br><em>useless text<em style="margin-left: .1rem">useless text</em>
</li>
,以便在创建portal
模块时尝试将自身用作依赖项。请参阅下面的评论。
portal