Angular - 指令中的更新范围

时间:2015-01-13 00:53:56

标签: angularjs scope apply

我在更新指令中的范围var时遇到问题,我不想在指令中添加HTML,是否可以更新范围var的值。 get-event链接将更新各种文本/链接/图像,但首先我只是想让它更新范围var name

Index.jade

   div(ng-controller='AppCtrl')
        h2 Hello {{name}}
        a(href={{link}}) test

   a.playlist(get-event rel='1000') 1000
   br 
   br
   a.playlist(get-event rel='2000') 2000
   br
   br
   a.playlist(get-event rel='3000') 3000

directive.js

    angular.module('myApp.directives', [])
      .directive('getEvent',  function($q, $http, $templateCache){
      return {
          restrict: 'A',
          scope: true,
          link: function (scope, element, attrs) {

                    function loadData() {

                            var refId = attrs.rel;
                            console.log(refId);

                        $http.get('/api/event/'+refId, {
                           // cache: $templateCache
                        }).then(function(result) {

                              console.log(result);
                               scope.name = "NEW";

                        });

                    }

                    element.bind('click', function(event) {

                        scope.$apply(function() {
                             loadData();
                        });
                    });
            }
          }
        });

controller.js

     angular.module('myApp.controllers', []).
      controller('AppCtrl', function ($scope, $http) {

        $http({
          method: 'GET',
          url: '/api/event/1000'
        }).
        success(function (data, status, headers, config) {
          $scope.name = data.title;
        }).
        error(function (data, status, headers, config) {
          $scope.name = 'Error!';
        });

      });

由于任何帮助,HTML上的范围名称不会更新。

1 个答案:

答案 0 :(得分:1)

我设法解决了自己,我最终改变了它,因此控制器中有一个功能可以进行更新。

控制器中的

     $scope.update = function(id) {

           //this is just a service factory to do the http request
          updateEvent.getDetails(id).success(function (result) {

            $scope.name =result.title;
        });
    };
指令

中的

    element.bind('click', function(event) {

          scope.$apply(function() {
              scope.update(refId);

          });
      });

感谢您的帮助