https://github.com/sangka/angularjs-in-action
AngularJs in Action中文版 —— 【译名】AngularJs 实战
https://github.com/sangka/angularjs-in-action
Last synced: 7 months ago
JSON representation
AngularJs in Action中文版 —— 【译名】AngularJs 实战
- Host: GitHub
- URL: https://github.com/sangka/angularjs-in-action
- Owner: SangKa
- Created: 2015-10-03T01:19:37.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-23T12:41:22.000Z (about 9 years ago)
- Last Synced: 2025-01-28T04:16:39.605Z (9 months ago)
- Size: 15.4 MB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#AngularJS in Action 中文版(废弃)

> 亚马逊上书评不是很高的一本manning出版的Action系列书,个人觉得导致差评的主要原因在于本书给出的实例是一个完整的整体,而不是以往manning风格的step by step教学方式,从而会影响一些完全对AngularJS没概念的读者无法从最终实例中去按章节拆分。但作者能在短短的100多页的书中将AngularJS的关键基础概念讲的清楚明白而且覆盖到了所有基础点,并刻意的没有去讲一些略复杂却不影响基础使用的高级用法(如`ui-router`、`provider`、`$resource`),将读者的精力集中在基础使用上,所以此书不失为一本学习AngularJS的好书。###目录
- [x] [第1章 | 你好 AngularJS](https://github.com/SangKa/AngularJS-in-Action/tree/master/Chapter-1)
- [x] [1.1 使用AngulraJS的优势](https://github.com/SangKa/AngularJS-in-Action/blob/master/Chapter-1/1.1.md)
- [x] [1.2 AngularJS大局观](https://github.com/SangKa/AngularJS-in-Action/blob/master/Chapter-1/1.2.md)
- [x] [1.3 建立你的第一个AngularJS应用](https://github.com/SangKa/AngularJS-in-Action/blob/master/Chapter-1/1.3.md)
- [x] [1.4 总结](https://github.com/SangKa/AngularJS-in-Action/blob/master/Chapter-1/1.4.md)
- [ ] [第2章 | 构建你的AngularJS应用](https://github.com/SangKa/AngularJS-in-Action/tree/master/Chapter-2)
- [x] [2.1 你好Angello](https://github.com/SangKa/AngularJS-in-Action/blob/master/Chapter-2/2.1.md)
- [x] [2.2 AngularJS应用结构](https://github.com/SangKa/AngularJS-in-Action/blob/master/Chapter-2/2.2.md)
- [x] [2.3 打造Angello基础](https://github.com/SangKa/AngularJS-in-Action/blob/master/Chapter-2/2.3.md)
- [x] [2.4 基础的路由和导航](https://github.com/SangKa/AngularJS-in-Action/blob/master/Chapter-2/2.4.md)
- [x] [2.5 一些最佳实践](https://github.com/SangKa/AngularJS-in-Action/blob/master/Chapter-2/2.5.md)
- [x] [2.6 总结](https://github.com/SangKa/AngularJS-in-Action/blob/master/Chapter-2/2.6.md)
- [ ] [第3章 | Views和Controllers]()
- [ ] [3.1 整体情况]()
- [ ] [3.2 什么是AngularJS的view?]()
- [ ] [3.3 什么是AngularJS的controller?]()
- [ ] [3.4 属性和表达式]()
- [ ] [3.5 最佳实践和测试]()
- [ ] [3.6 总结]()
- [ ] [第4章 | Models和Services]()
- [ ] [4.1 什么是models和services?]()
- [ ] [4.2 使用$http的models]()
- [ ] [4.3 Promises]()
- [ ] [4.4 $http interceptors]()
- [ ] [4.5 Service decorators]()
- [ ] [4.6 测试考虑]()
- [ ] [4.7 总结]()
- [ ] [第5章 | Directives]()
- [ ] [5.1 Directives介绍]()
- [ ] [5.2 Directives 101: 一个快速基础]()
- [ ] [5.3 一些高级的特点]()
- [ ] [5.4 再次整合第三方类库]()
- [ ] [5.5 测试directive]()
- [ ] [5.6 最佳实践]()
- [ ] [5.7 总结]()
- [ ] [第6章 | 动画]()
- [ ] [6.1 动画介绍]()
- [ ] [6.2 Css transitions]()
- [ ] [6.3 Css animations]()
- [ ] [6.4 JavaScript动画]()
- [ ] [6.5 测试]()
- [ ] [6.6 最佳实践]()
- [ ] [6.7 总结]()
- [ ] [第7章 | 使用routes构建你的网站]()
- [ ] [7.1 AngularJS routes组件]()
- [ ] [7.2 在AngularJS中如何创建routes]()
- [ ] [7.3 在routes中使用parameters]()
- [ ] [7.4 在routes中使用resolve]()
- [ ] [7.5 Route事件]()
- [ ] [7.6 测试]()
- [ ] [7.7 最佳实践]()
- [ ] [7.8 总结]()
- [ ] [第8章 | 表单和验证]()
- [ ] [8.1 整体:AngularJS表单验证]()
- [ ] [8.2 测试]()
- [ ] [8.3 最佳实践]()
- [ ] [8.4 总结]()###译文约定
- 本书会将AngularJS中的核心概念名词(如`model`、`view`、`controller`、`service`、`directive`..)和其它的一些技术名词(如`promise`)保持英文原文从而避免一些混淆
###相关资源
- 第1章案例: [https://github.com/angularjs-in-action/angello-lite](https://github.com/angularjs-in-action/angello-lite)
- 最终案例: [https://github.com/angularjs-in-action](https://github.com/angularjs-in-action)
> ######*此译文版本仅供前端爱好者交流学习使用,不可用于任何商业用途,另由于本人英文水平有限,译文不足之处请见谅*