var app = angular.module('app', []); app.controller('commonCtrl', function($scope){ $scope.data.chart = [xxxxx]; //$scope.data = [xxxxx]; }) //这2种在$scope上面不同的赋值方法有什么实际的区别呢?
认证高级PHP讲师
第一个data是一个 对象第二个data只是一个变量算是angular当前scope下的 原始数据 。就好比
data
angular
scope
window.a.data=[xxxx]; window.a=[xxxx];
至于为什么前者在angular中更常见主要是因为JS prototypal inheritance..像ng-repeat, ng-switch, ng-view, ng-include, isolate scope等等会创建新的scope childScope = $scope.$new() 对于父scope上的原始数据类型 就没法实现双向绑定了..
JS prototypal inheritance..
ng-repeat, ng-switch, ng-view, ng-include, isolate scope
scope childScope = $scope.$new()
$scope.data.chart 是 data:{chart:[xxxxxx]} 这个data里面还可以设置其他属性 如
data:{ chart:[xxxxxx], chart2:[yyyyyy], chart3:[zzzzzz] }
$scope.data 是 data:[xxxxxx]这个data就只能是个[]数组了
都是json数据
第一个
data
是一个 对象第二个
data
只是一个变量算是angular
当前scope
下的 原始数据 。就好比
至于为什么前者在angular中更常见
主要是因为
JS prototypal inheritance..
像ng-repeat, ng-switch, ng-view, ng-include, isolate scope
等等会创建新的scope childScope = $scope.$new()
对于父scope
上的原始数据类型 就没法实现双向绑定了..$scope.data.chart 是 data:{chart:[xxxxxx]}
这个data里面还可以设置其他属性 如
$scope.data 是 data:[xxxxxx]
这个data就只能是个[]数组了
都是json数据