For example: $scope.a={
a:{a1:1,a2:2,a3:3}, b:{b1:1,b2:2,b3:3},
}The function obtains a3 from the parameter. How to access $scope.a
小伙看你根骨奇佳,潜力无限,来学PHP伐。
This is not possible, attributes are not unique.
$scope.a = { a: {a1:1, a2:2, a3:3} b: {a1:1, a2:2, a3:3} } $scope.b = { a: {a1:1, a2:2, a3:3} b: {a1:1, a2:2, a3:3} }
So for the above code, what can we get with a3=3?
This is not possible, attributes are not unique.
So for the above code, what can we get with a3=3?