关于Angular:
AngularJS诞生于2009年, 由Misko Hevery 等人创建, 后为Google所收购。 是一款优秀的前端JS框架, 已经被用于Google的多款产品当中。
AngularJS 的核心是: MV*、 模块化、 指令系统、双向数据绑定、依赖注入,扩展了HTML的语法。
- MVC,short for Model-View-Controller.
Model is the data and the database.
View is the user interface and what the user sees.
Controller is the main link between Model and View.
- MV*,short for Model-View-Whatever.
学习:
- AngularJS已经发展到2.0BETA版本, 并且1.2以上已经废弃了对IE8的支持, 我们一般来说使用1.2以上的稳定版
- AngularJS中文文档: http://www.runoob.com/angularjs/angularjs-tutorial.html (1.4.6版本)
- AngularJS在线CDN: http://www.bootcdn.cn/angular.js
相关文档:
- Web site: https://angularjs.org
- Tutorial: https://docs.angularjs.org/tutorial
- API Docs: https://docs.angularjs.org/api
- Developer Guide: https://docs.angularjs.org/guide
- Contribution guidelines: CONTRIBUTING.md
- Dashboard: https://dashboard.angularjs.org
Looking for Angular 2? Go here: https://github.com/angular/angular
“相关文档”链接来自 github: https://github.com/angular/angular.js
基本使用方法:
例1:用AngularJS实现一个邮费计算器吧。
要求:当小于1kg时,收费10元;后续每增重1kg(或小于1kg),增加5元。
例2:$http 是比较重要的一个服务,试试看吧。
要求:使用$http 服务实现get请求,若成功则将内容输出。
例3:路由的使用。
要求:实现3个页面跳转