角度控制器不能与nsPopover模块一起使用

时间:2015-05-25 04:10:42

标签: angularjs nspopover

我正在使用nsPopover Angular模块打开popover来展示一些notification

我为popover创建了一个模板,并希望更新一些数据,但scope不会更新。 我认为controllers之间存在一些冲突,因为在此页面中我有多个controllers

这是我的代码

var app = angular.module('notification', ['header', 'nsPopover']);

app.controller('notificationCtrl', ['$scope', '$http', function($scope, $http) {
    var notifyItems = [];
    $http.get('/secure/notify').success(function(data) {
        $scope.items = data;
    }).error(function(err) {
        console.log(err);
    });
    $scope.testing = "Hello world";
    $scope.getNotification = function() {
        $scope.items = 0;
    };
}]);

这是我的popover指令

  <button ns-popover ns-popover-template="popover">Click Me</button>

这是我的模板

 <script type="text/ng-template" id="popover">
  <ul>
  {{testing}}
  </ul>
</script>

应用程序配置了多个任务,这是其中之一。

因此我无法提供任何plunker链接。

任何建议对我都有帮助

这是nspopover nspopover

的示例

谢谢

0 个答案:

没有答案