如何在JavaScript文件中访问角度范围变量

问题描述 投票:2回答:2

我对角度和javascript一般都是新手。我知道可能有一个简单的方法可以做到这一点,但我只是很难搞清楚。

我有一个角度服务和控制器定义。

var app = angular.module('nodeAnalytics', []);

app.factory('myService', function($http) {
  var myService = {
    async: function() {
      // $http returns a promise, which has a then function, which also returns a promise
      var promise = $http.get('https://graph.facebook.com/lowes').then(function (response) {
        // The then function here is an opportunity to modify the response
        console.log(response);
        // The return value gets picked up by the then in the controller.
        return response.data;
      });
      // Return the promise to the controller
      return promise;
    }
  };
  return myService;
});


app.controller('MainCtrl', [
'$scope', 'myService', '$window',
  function($scope, myService, $window){
    $scope.test = 'Hello world!';
     myService.async().then(function(d) {
      $scope.data = d.likes;
      $window.data = $scope.data;
      console.log($scope.data)
    });
}]);

我知道在我的html文件中我使用{{data}}来访问scope.data$window.data允许我访问浏览器中的scope元素,但由于我不知道如何给javascript文件访问window元素,因此不是很有帮助。

如何在javascript / jquery文件中访问数据变量。

我正在使用highcharts,我想将数据的值放入图表参数中,但我不知道如何访问它。

  $('#container-rpm').highcharts(Highcharts.merge(gaugeOptions, {
            series: [{
                data: {{data}},
            }]
        }));
javascript jquery angularjs highcharts
2个回答
2
投票

只需看看您将理解的这个简单代码

<body ng-app="myApp" data-ng-controller="MainCtrl" id="div1">
  <div id="container" style="min-width: 310px; height: 400px; margin: 0 auto">
  </div>
 <script>
  var app = angular.module('myApp', []);

  app.controller('MainCtrl', function($scope){

    $scope.d=[10, 20, 30, 40];

    });
  </script>
  <script>
$(function () {

  var scope = angular.element("#div1").scope();
    $('#container').highcharts({
        chart: {
            type: 'column'
        },
        title: {
            text: 'Column chart with negative values'
        },
        credits: {
            enabled: false
        },
        series: [{
        name: 'Bar Chart',
        data: scope.d

        }]
    });
});
</script>

</body>

你必须使用angular.element(#dom).scope()访问$scope.d

如果你想在绘制图形之前更改array d的值,你必须使用$scope.$apply()


0
投票

你需要把图表放在一个指令中。从指令中,您将能够访问范围。

© www.soinside.com 2019 - 2024. All rights reserved.