为什么我们需要在这里使用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;
}
});
}]);