我正在尝试编写一个指令来加载部分 html 文件,针对范围编译它并将其用作 Bootstrap 弹出内容。
但是我被困在一个非常基本的步骤上,在 popover 范围上编写一个 hide() 方法,以便我可以使用ng-click=hide()
.
这已经解决了,plunker 现在正在解决其他问题 ;-)。
更新:救援人员: http ://plnkr.co/edit/QH3NQh?p=preview
.directive('uiPopover', ['$compile', '$http', function($compile, $http) {
return {
restrict: 'A',
scope: {
hide: '&hide' // did not understand what is this
},
link: function postLink(scope, element, attr, ctrl) {
console.warn('postLink', arguments, this);
// scope is the anchor scope
scope.name = "Hello"; // Using {{name}} is working
scope.hide = function() { // Using ng-click="hide()" is not working :(
console.log('in');
element.popover('hide');
}
$http.get(attr.uiPopover).success(function(data) {
element.popover({
content: $compile(data)(scope), // popover content will get a new scope that I need to put hide() on.
html: true
});
});
}
}
}]);