0

我不明白为什么我不能从指令访问 $scope 属性,文档说指令不会创建新的范围,那么为什么我不能访问 $scope 属性?

在 app.js

'use strict';

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

climbingApp.controller('ctrl', function($scope) {

    $scope.initLocation = {
        lat: -54.798112,
        lng: -68.303375
    };

在 google-map.js

'use strict';

climbingApp.directive('gmap', function() {
        return {
            restrict: 'E',
            replace: true,
            template: '<div id="map-canvas"></div>',
            link: function(scope, iElement, attrs) {
                console.log(scope.initLocation);
            },
        }

    })

在 index.html

  <html ng-app="climbingApp">
     <body>
    <gmap></gmap>

    </body>
    </html>

<script src="//code.angularjs.org/1.2.0-rc.2/angular.min.js"></script>

<script src="app/app.js"></script>
<script src="app/dependencies/google-maps.js"></script>

console.log总是返回未定义。

4

3 回答 3

2

您需要将范围注入控制器

climbingApp.controller('ctrl', function($scope) {
于 2013-09-24T20:50:28.457 回答
1

您必须将控制器与视图(如果您使用ngRoute)或使用 的元素相关联ng-controller。像这样的东西:

<body ng-controller="ctrl">...</body>
于 2013-09-24T21:23:32.790 回答
0

像这样在控制器中注入 $scope :

var climbingApp = angular.module('climbingApp', ['ngRoute']);


    climbingApp.controller('ctrl', function($scope) {

        $scope.initLocation = {
            lat: -54.798112,
            lng: -68.303375
        };

        $scope.markers = [
            {
                'title' : 'prueba',
                'position' : [-54.798112, -68.303375] 
            },
            {   
                'title': 'prueba', 
                'position': [-54.798212, -68.303375] 
            }
        ];
    });


    'use strict';

    climbingApp.directive('gmap', function() {
            return {
                restrict: 'E',
                replace: true,
                template: '<div id="map-canvas"></div>',
                link: function(scope, iElement, attrs) {
                    console.log(scope.initLocation);
                },
            }

        })

在这里工作 plunkr:http://plnkr.co/edit/fiK5viToLOVGobnAKZtB?p= preview

出现日志。

$scope 或 $location 必须作为参数传入控制器的功能。

于 2013-09-24T20:51:04.200 回答