角度延伸有什么用?它的应用是什么?

时间:2015-11-27 09:48:33

标签: angularjs extend

为什么我们需要在这里使用angular.extend?归还给谁的价值

return $scope.thingOne + ‘ ‘ + $scope.thingTwo;

在我的控制器

app.controller(‘ThingController’, [ ‘$scope’, function($scope) {
  angular.extend($scope, {
    thingOne: ‘one’,
    thingTwo: ‘two’,
    getThings: function() { 
        return $scope.thingOne + ‘ ‘ + $scope.thingTwo; 
    }
  });
}]);

0 个答案:

没有答案