本章学习模块的划分 先来看一下模块中的“坑” 导入其它模块时,需要知道使用该模块的目的 如果是组件,那么需要在每一个需要的模块都进行导入 如果是服务,那么一般来说在根模块中导...
本章学习Angular中的模块 Angular官网解释翻译 Angular 应用是模块化的,它拥有自己的模块化系统,称作 NgModule。 一个 NgModule 就是一个...
本章讲解组件的双向绑定~首先新建一个网格组件,本章并不会实现其内容,只是用来演示一下组件的双向绑定。新建组件的过程就不再此赘述。 其实之前我们的案例中已经多次使用了,那么双向...
本章主要内容是完成这个轮播图组件~ 首先来修复一下上两个章节中的bug,滚动顶部菜单时,轮播图部分也会被滚动。原则上来说菜单和轮播图的滚动互不影响。这是由于Scrollabl...
上一章学习了在组件类中通过ViewChild去引用模板中的元素,是通过引用名引用的。但是ViewChild不只可以指定引用名引用,也可以指定组件类型来引用。 @ViewChi...
本章讲解如何在组件的类中引用模板中的元素~先来看一小段示例 #后面是给模板或者DOM元素起一个引用名字,以便可以在组件类或模板中进行引用。这是一个唯一标识的名字,不能重复,也...
本章接着说组件的生命周期~ ngAfterContentInit 组件内容初始化钩子函数,在组件使用<ng-content>将外部内容嵌入到组件视图后就会调用ngAfterC...
本章讲解组件的生命周期 Angular 提供了一系列关于生命周期的钩子函数(constructor不属于生命周期的钩子函数)。 图中描述了每个函数在什么时候被调用,那么接下来...
There a several ways that you can copy nodes and flows between flows. They are: Select ...
In this article, we will use two ways to get the textbox value. Get value with value ch...
In this article, we will learn about how to create and use Node-RED subflows.A subflow ...
In this article, we will learn about the Events in Angular. Even in the previous articl...
Http In Creates an HTTP end-point for creating web services. OutputsFor a GET request, ...
In this article, we'll learn how to call a function on a button in angular. How to defi...
Template The Template node can be used to generated text using a message's properties t...
What is an angular module In Angular, a module is a mechanism to group components, dire...
In this article, learn what is a component in angular, how to create angular components...
In this article, we will learn about the angular interpolation. What is the interpolati...
Angular 样式绑定的几种方式: 方式一:class.className 对于单个样式的条件绑定最为合适 ... 方式二:ngClass 是自由度和扩展性最强的样式绑定方...