单击函数highcharts-ng和Angularjs的问题

时间:2015-01-19 07:34:00

标签: angularjs highcharts highcharts-ng

我为我的图表设置了工厂提供程序。该图是从highcharts和highcharts-ng构建的,这是一个angularjs highcharts指令。

在名为SentimentChartController的控制器中,我在图形节点上创建了一个单击函数,如下所示:

$scope.AveSentimentChartConfigMain.options.plotOptions.series.point.events.click = function () {
      var containerDiv = document.createElement('div');
      containerDiv.setAttribute('id', 'postListPopUpContainer');
      containerDiv.setAttribute('ng-controller', 'SentimentChartController');
      var contentDiv = document.createElement('div');
      contentDiv.setAttribute('id', 'postListPopUp');
      contentDiv.innerHTML = '<img onclick="closeDrillDown()" src="images/closePostListPopUp.svg" title="Click to close" class="closeIcon" width="18" height="18"><h2>' +
      this.category + ' ' + this.series.name + '</h2>' +
      '<p class="drillDownInfo"><strong>' + this.y + '%</strong> of posts where we can determine a sentiment are ' + this.category + '</p>';
      document.body.appendChild(containerDiv);
      containerDiv.appendChild(contentDiv);
    };

点击图表节点后生成的html如下:

<div id="postListPopUpContainer" ng-controller="SentimentChartController">
  <div id="postListPopUp">
    <img src="images/closePostListPopUp.svg" title="Click to close" class="closeIcon" width="18" height="18" onclick="closeDrillDown()">
    <h2>Positive Sentiment</h2>
    <p class="drillDownInfo"><strong>26%</strong> of posts where we can determine a sentiment are Positive</p>
  </div>
</div>

在我的SentimentChartController中,我还声明了以下函数:

$scope.closeDrillDown = function() {
      alert('function called');
};

此函数应触发在我上面定义的单击函数

期间创建的以下img元素
<img onclick="closeDrillDown()" src="images/closePostListPopUp.svg" title="Click to close" class="closeIcon" width="18" height="18">

但是我收到“未捕获的ReferenceError:未定义closeDrillDown”错误。

为什么即使我在容器div中设置ng-controller =“SentimentChartController”也会发生这种情况

1 个答案:

答案 0 :(得分:0)

对于范围函数,您应该使用ng-click属性而不是onclick,您收到错误是因为您的函数是在您的范围内定义而不是全局javascript函数,其他的事情是,在控制器中选择dom不是一个好习惯,尝试使用angular.element在分离的指令

中进行此dom选择