这系列是看《用angularjs开发下一代web应用》的笔记。
angular也接触几个月,总觉得不甚明白,写起来总是不那么如意。希望这本书看完了可以改变现在的状况。好了废话不多说开始:
首先把github里面的代码地址发出来:http://github.com/shyamseshadri/angularjs-book
模板写在HTML页面上,应用逻辑写在contrllers.js上
第一步输出:hello,world!
代码:
<
1 <html ng-app> 2 <head> 3 <script src="angular.js"></script> 4 <script src="controllers.js"></script> 5 </head> 6 <body> 7 <div ng-controller=‘HelloConroller‘> 8 <input ng-model=‘greeting.text‘> 9 <p>{{greeting.text}},world!</p> 10 </div> 11 </body> 12 </html> 13
在controller.js里面秩序写一个$scope
1 function HelloController($scope){ 2 $scope.greeting={text:‘Hello‘}; 3 }
然后我们在input框了输入hi,结果就是: hi。world!
时间: 2024-10-01 02:48:49