angularjs范围在指令中不可访问

时间:2013-09-12 05:16:28

标签: angularjs angularjs-directive angularjs-scope

我正在尝试使用angularjs指令加载图表。我希望在数据来自服务器响应后加载图表。但范围是空的。我的代码是

<div class="span4" ui-if="loadingIsDone">
                                            <article id="piChart2">
                                                <section id="toolBox1">
                                                    <h3 id="toolH1"></h3>
                                                    <p id="toolD1"></p>
                                                </section>
                                                <article id="toolTip1"></article>
                                                <canvas id="canvas1" width="250" height="250" draw-chart>

                                                </canvas>
                                            </article>
                                        </div>

我的控制器是

controller(){
 $scope.teamStrengths =  {};
 $scope.loadingIsDone = false;

 $http({
        url: "url", 
          method: "POST",
          data: {"userUids":uids}
         }).success(function(response){

             $scope.teamStrengths =  response.resource.strengths;//data loads successfully


             $scope.loadingIsDone = true;

             //rest of code is skipped
}

我的指示是

Directives.directive('drawChart', function() {
       return function(scope, element, attrs) {

           console.debug("element :"+element);
           console.debug("attrs :"+attrs);

             graphDraw('canvas1',scope.teamStrengths.value1,scope.teamStrengths.value2,scope.teamStrengths.value3)
         //grap loads successfully with static data



       };
     });

请帮助我,我将感激不尽

1 个答案:

答案 0 :(得分:1)

$http调用是异步的。指令需要$watch中的scope更改。在你的指令中添加:

 scope.$watch('teamStrengths', function(newValue, oldValue) {
     if (newValue)
        graphDraw('canvas1',scope.teamStrengths.value1,scope.teamStrengths.value2,scope.teamStrengths.value3)
 }, true);

或者关注$scope.loadingIsDone更改:

 scope.$watch('loadingIsDone', function(newValue, oldValue) {
     if (newValue == true)
        graphDraw('canvas1',scope.teamStrengths.value1,scope.teamStrengths.value2,scope.teamStrengths.value3)
 }, true);