**
前言
angularjs是一款优秀的前端js框架,已经被用于google的多款产品当中,并且得到众多前端工程师的青睐。
本书是angularjs程序设计的高级指南。全书共25章,分为3个部分,每部分覆盖一组相关话题。第1部分为第1章到第8章,包括angularjs简介,以及html、css和javascript的基础知识。第2部分为第9章到第17章,引导读者熟悉angularjs库的各种特性,从对一个angularjs应用程序中各种不同组件的概览开始,依次深入介绍每种类型的组件。第3部分为第18章到第25章,解释了angularjs中的两个重要组件模块和服务,还讨论了简化单页面应用程序开发、ajax和restful api、单元测试的支持等相对高级的话题。
本书适合有一定基础的javascript程序员阅读,也适合对angularjs感兴趣的不同基础的读者学习参考。
**[第1部分 准备
第1章 准备
<a href="https://yq.aliyun.com/articles/94918">1.2 本书的组织结构</a>
<a href="https://yq.aliyun.com/articles/94924">1.3 会有许多实例吗</a>
<a href="https://yq.aliyun.com/articles/94929">1.4 从哪里可以获得实例代码</a>
<a href="https://yq.aliyun.com/articles/94949">1.5 如何搭建你的开发环境</a>
1.5.1 选择web浏览器
1.5.2 选择代码编辑器
1.5.3 安装node.js
1.5.4 安装web服务器
1.5.5 安装测试系统
1.5.6 创建angularjs文件夹
1.5.7 执行一个简单的测试
<a href="https://yq.aliyun.com/articles/94951">1.6 小结</a>
**[第2章 你的第一个angularjs应用
<a href="https://yq.aliyun.com/articles/95011">2.2 使用angularjs</a>
2.2.1 将angularjs应用到html文件
2.2.2 创建数据模型
2.2.3 创建控制器
2.2.4 创建视图
<a href="https://yq.aliyun.com/articles/95046">2.3 基本功能之外</a>
2.3.1 使用双向模型绑定
2.3.2 创建和使用控制器行为
2.3.3 使用依赖于其他行为的行为
2.3.4 响应用户交互
2.3.5 对模型数据过滤和排序
2.3.6 通过ajax获取数据
<a href="https://yq.aliyun.com/articles/95053">2.4 小结</a>
**[第5章 javascript基础
<a href="https://yq.aliyun.com/articles/95093">5.2 理解script元素</a>
<a href="https://yq.aliyun.com/articles/95097">5.3 使用语句</a>
<a href="https://yq.aliyun.com/articles/95111">5.4 定义并使用函数</a>
5.4.1 定义带参函数
5.4.2 定义返回结果的函数
5.4.3 检查函数
<a href="https://yq.aliyun.com/articles/95148">5.5 使用变量及类型</a>
5.5.1 使用基本类型
5.5.2 创建对象
5.5.3 使用对象
<a href="https://yq.aliyun.com/articles/95184">5.6 使用javascript运算符</a>
5.6.1 使用条件语句
5.6.2 对比等于运算符和全等运算符
5.6.3 显式转换类型
<a href="https://yq.aliyun.com/articles/95203">5.7 使用数组</a>
5.7.1 使用数组字面量
5.7.2 检测数组
5.7.3 读取和修改数组的内容
5.7.4 枚举数组内容
5.7.5 使用内置数组方法
<a href="https://yq.aliyun.com/articles/95230">5.8 比较undefined和null值</a>
<a href="https://yq.aliyun.com/articles/95237">5.9 使用承诺</a>
<a href="https://yq.aliyun.com/articles/95239">5.10 使用json</a>
<a href="https://yq.aliyun.com/articles/95241">5.11 小结</a>