学习 Angular

Us

Everyone learns differently. You don't have to read the documentation straight through. Most pages stand on their own. Those new to Angular may wish to follow this popular learning path.

每个人的学习方式不一样。 你不一定要通读文档。本站大部分页面都是独立的。 Angular 初学者可能希望跟随下面的常见学习路径。


  1. Setup for local Angular development, if you haven't already done so.

    如果你还没有这样做,搭建本地 Angular 开发环境。

  2. Take the Tour of Heroes tutorial.

    学习英雄指南教程

    The Tour of Heroes takes you step-by-step from setup to a full-featured example that demonstrates the essential characteristics of a professional application: a sensible project structure, data binding, master/detail, services, dependency injection, navigation, and remote data access.

    英雄指南搭建本地开发环境开始, 带着你一步一步地开发出具有完整特征的示例程序,它包含了专业应用最基本的特征: 合理的项目结构、数据绑定、主从视图、服务、依赖注入、导航和远程数据访问等。

  3. Read the Architecture overview for the big picture.

    阅读架构了解大局。

  4. The Root Module introduces the NgModule class that tells Angular how to compile and run your application.

    根模块介绍了NgModule类,它为 Angular 描述如何编译和运行应用。

  5. Displaying Data shows how data binding puts component property values on screen.

    显示数据展示了数据绑定如何将组件属性值显示到屏幕上。

  6. User Input explains how to respond to user-initiated DOM events.

    用户输入解释了如何处理用户触发的 DOM 事件。

  7. Forms covers data entry and validation within the UI.

    表单涵盖了用户界面中数据的输入和验证。

  8. Dependency Injection is the way to build large, maintainable applications from small, single-purpose parts.

    依赖注入是用小型和单用途部件来构建大型、易维护应用的途径。

  9. Template Syntax is a comprehensive study of Angular template HTML.

    模板语法对 Angular 模板 HTML 进行了完整的阐述。

After reading the above sections, feel free to skip around among the other pages on this site.

阅读以上内容后,你可以随意挑选在本站的其他页面进行阅读。

Next Step

下一步

Try the tutorial if you're ready to start coding or visit the Architecture page if you prefer to learn the basic concepts first.

如果你想开始编程,那就试试教程。或者如果你想要先学习基本概念,那么阅读架构页面。