|
所在平台: Udemy |
课程主页: https://www.udemy.com/course/complete-angular-beginners-guide-arabic/
课程评论:没有评论
课程名称:完整的Angular初学者指南 课程概述:本课程旨在教授你构建一个生产就绪的Web应用程序所需的所有知识。课程将从Angular的介绍开始,接着讲述将要构建的应用程序及默认的Angular项目文件结构。你还将学习如何将Angular应用程序发布到GitHub仓库,并了解你将遵循的GitHub仓库结构。 课程内容亮点: 1. **组件**:Angular是一个基于组件的框架,因此这一部分非常重要,将教授框架的基本概念。你将学习: - 什么是组件 - 组件的重要性 - 子组件与父组件 - 组件生命周期 - 最佳实践 2. **模板**:在Angular中,模板是用户界面(UI)片段的蓝图。模板以HTML编写,并可以使用特殊语法来构建Angular许多功能。你将学习: - 文本插值 - 管道(Pipes) - 绑定 - 单向绑定 - 双向绑定 - 事件绑定 - 类和样式绑定 3. **指令**:指令是为Angular应用程序中的元素添加额外行为的类。你将学习: - 内置指令 - 属性指令 - 结构指令 4. **依赖注入**:依赖是类执行其功能所需的服务或对象。依赖注入(DI)是一种设计模式,类从外部源请求依赖,而不是自己创建它们。Angular的依赖注入非常重要,因为没有依赖注入,使用真实数据将变得困难。 本课程旨在为初学者提供全面的Angular知识,帮助你建立高效的Web应用程序。
In this course, you will find all you need to know to build a production-ready web application using Angular.You will start with an introduction to Angular, the application that you will build, and also the default Angular project file structure. You will then publish the Angular app to a GitHub repository and learn about the GitHub repository structure that you will follow.ComponentsAngular is a component-based framework so you can imagine that this is also the most important section of this course since it's going to teach you the real fundamentals of this framework.Here you will learn:What is a componentImportance of componentsChild and parent componentsComponent life-cyclesBest practicesTemplatesIn Angular, a template is a blueprint for a fragment of a user interface (UI). Templates are written in HTML, and special syntax can be used within a template to build on many of Agular's features.Here you will learn:Text interpolationPipesBindings One-way binding Two-way binding Event binding Class and style bindingDirectivesDirectives are classes that add additional behavior to elements in your Angular applications.Here you will learn:Built-in directivesAttribute directivesStructural directivesDependency InjectionDependencies are services or objects that a class needs to perform its function. Dependency injection, or DI, is a design pattern in which a class requests dependencies from external sources rather than creating them.Angular dependency injection is really important because without dependency injection it would be really hard to work with real data. And in this course.