# Template Syntax # 模板语法 The Angular application manages what the user sees and can do, achieving this through the interaction of a component class instance (the *component*) and its user-facing template. Angular 应用管理着用户之所见和所为,并通过 Component 类的实例(*组件*)和面向用户的模板来与用户交互。 You may be familiar with the component/template duality from your experience with model-view-controller (MVC) or model-view-viewmodel (MVVM). In Angular, the component plays the part of the controller/viewmodel, and the template represents the view. 从使用模型-视图-控制器 (MVC) 或模型-视图-视图模型 (MVVM) 的经验中,很多开发人员都熟悉了组件和模板这两个概念。 在 Angular 中,组件扮演着控制器或视图模型的角色,模板则扮演视图的角色。 This page is a comprehensive technical reference to the Angular template language. It explains basic principles of the template language and describes most of the syntax that you'll encounter elsewhere in the documentation. 这是一篇关于 Angular 模板语言的技术大全。 它解释了模板语言的基本原理,并描述了我们将在文档中其它地方遇到的大部分语法。 Many code snippets illustrate the points and concepts, all of them available in the . 这里还有很多代码片段用来解释技术点和概念,它们全都在中。 {@a html} ## HTML in templates ## 模板中的HTML HTML is the language of the Angular template. Almost all HTML syntax is valid template syntax. The `