摘要:
1 var app = angular.module("app", []); 2 3 function HelloController($scope) { 4 $scope.data = {message : "World"}; 5 6 } 7 8 function CartController($scope) { 9 $scope.items = [ 10 {title : "饼干", quantity : 8, price : 3.95}, 11 {title : "大饼", quantity : 18, pr 阅读全文