var app = angular.module("myApp",[]); // 此处的myApp就是html中ng-app对应的值
app.controller("MyController",function($scope){
$scope.textValue = {
text : "hello111"
};
})
app.controller("MyController",function($scope){
$scope.textValue = {
text : "hello111"
};
})
2016-05-12
讲课程,为啥不一步步推进。为啥不把每一细节讲清楚。一个功能的实现,再看下代码,不讲清楚每行代码几个意思,代码谁先谁后,谁TM的能听懂啊
2016-05-09