search
HomeWeb Front-endJS TutorialAngular dynamic form example explanation
Angular dynamic form example explanationFeb 23, 2018 am 10:07 AM
angularExampleexplain

This article mainly introduces the implementation ideas of angular dynamic forms. For specific implementation details, please refer to the article on dynamic creation of forms by semlinker in the community, as well as the reference resources recommended by him: Configurable Reactive Forms in Angular with dynamic components. This article of the author is mainly a partial translation and reflection of the above article.

Angular dynamic form example explanation

Dynamic form usage scenarios

Sometimes we need a flexible form, which can be based on the user's choice, or the server The returned information is reconfigured, such as adding or deleting a set of input elements, a set of select elements, etc.

In this case, if you write all the forms in the template from the beginning and use an ngif tree structure for selection control, the program will become more redundant.

At this time. It is best for the program to automatically generate the required forms based on the user's selection (driven by configuration) or the server's response. This is the business that dynamic forms deal with.


  • Two components of a component

To dynamically generate a form, you need to first Understand how components are generated.

An angular component consists of two parts.

  1. Wrapper

Wrapper can interact with components. When a Wrapper is initialized, it has already helped us instance ized a component. At the same time, it is also responsible for component change detection and triggering hook functions such as ngOnInit and ngOnChanges.

  1. View

View is responsible for rendering the rendered template, showing the appearance of the component, and triggering the Wrapper change detection. A component can have multiple views, and each view can be generated and destroyed by calling the two functions provided by Angular. This process does not require the participation of the top-level view.

  • The usual loading method of components (non-dynamic loading method)

Normally, we embed the components into the root component or used in another component. The embedded component is called a child component, and the embedded component is called a parent component. At this time, when our sub-component code is compiled, a component factory component factory (this is an instance of the angular core class ComponentFactory) and a hsot view will be generated. The host view is responsible for this component generating the DOM node of the component in the parent component view, as well as generating the wrapper and view of the component.

  • Dynamic loading of components

When we want to insert a dynamic component into a component view, we cannot obtain the dynamic component's instances, since these are what non-dynamic component compilers do.


Implementing dynamic components

angular provides some functions to solve the above problems. To use these functions we need to inject two objects.

constructor(
    private componentFactoryResolver: ComponentFactoryResolver,
    private viewcontainerRef: ViewContainerRef,
  ) {
      
  }

We injected ComponentFactoryResolver, and ViewContainerRef.

ComponentFactoryResolver provides a method (resolveComponentFactory()), which receives a component class as a parameter and generates a component factory based on the component class, which is what we mentioned before That component factory.

ViewContainerRef Provides a method (createComponent()) that receives the component factory as a parameter to generate subcomponents in the view. (My personal understanding is that it handles what the host view does and generates wrappers and views for the components)


Implementing dynamic forms

The above briefly introduces the implementation of dynamics Some technologies of components, now let’s start thinking about how to make a dynamic form.

  • Specific ideas

We want to make an independent dynamic form module. When we want to use dynamic forms, we only need to simply Introduce this module and use it with a little configuration.

We hope that after this module is completed, the workflow from the perspective of top-level users will be like this:
Angular dynamic form example explanation

We can easily To make a component with input attributes, the core of the problem is how this component generates the form we want based on the input attributes.

In other words, should it call ComponentFactoryResolver and ViewContainerRef to dynamically generate components, or should it be handled by others.

The following picture is the implementation idea:

Angular dynamic form example explanation

  1. In fact, we split the dynamic form into one A small dynamic component (not preloaded), an outer component acts as a container, and all dynamic components will be generated and destroyed inside. Together, they form a dynamic form.

  2. 调用ComponentFactoryResolver和ViewContainerRef生成组件的的这部分逻辑没有集成在外层容器中,而是交给了一个自定义的指令和ng-container。因为指令没有视图,他通过注入ViewContainerRef获取到的是宿主的视图容器。由于ng-container不会被渲染,所以获取到的视图容器就是外层组件容器的视图容器。

这么处理的好处就是不需要由外层组件统一对各个拆分的动态组件进行管理,相当于是由动态组件自己进行管理。

外层组件容器大概会是下面这样:


    
configs是用户的配置数据,自定义指令寄宿在ng-container中,根据config渲染出各自的动态组件,而ng-container是透明的。

看一下代码目录结构,最后会是这个样子

Angular dynamic form example explanation

以上就是大体的实现思路了,具体还有许多细节可以关注文章开头提到的那两篇文章,讲的很详细。

相关推荐:

php 动态表单的生成和提交解决方案

动态表单(一)动态表单的定义

jQuery实现动态表单验证时文本框抖动效果完整实例_jquery

The above is the detailed content of Angular dynamic form example explanation. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
聊聊Angular中的元数据(Metadata)和装饰器(Decorator)聊聊Angular中的元数据(Metadata)和装饰器(Decorator)Feb 28, 2022 am 11:10 AM

本篇文章继续Angular的学习,带大家了解一下Angular中的元数据和装饰器,简单了解一下他们的用法,希望对大家有所帮助!

angular学习之详解状态管理器NgRxangular学习之详解状态管理器NgRxMay 25, 2022 am 11:01 AM

本篇文章带大家深入了解一下angular的状态管理器NgRx,介绍一下NgRx的使用方法,希望对大家有所帮助!

浅析angular中怎么使用monaco-editor浅析angular中怎么使用monaco-editorOct 17, 2022 pm 08:04 PM

angular中怎么使用monaco-editor?下面本篇文章记录下最近的一次业务中用到的 monaco-editor 在 angular 中的使用,希望对大家有所帮助!

项目过大怎么办?如何合理拆分Angular项目?项目过大怎么办?如何合理拆分Angular项目?Jul 26, 2022 pm 07:18 PM

Angular项目过大,怎么合理拆分它?下面本篇文章给大家介绍一下合理拆分Angular项目的方法,希望对大家有所帮助!

Angular + NG-ZORRO快速开发一个后台系统Angular + NG-ZORRO快速开发一个后台系统Apr 21, 2022 am 10:45 AM

本篇文章给大家分享一个Angular实战,了解一下angualr 结合 ng-zorro 如何快速开发一个后台系统,希望对大家有所帮助!

聊聊自定义angular-datetime-picker格式的方法聊聊自定义angular-datetime-picker格式的方法Sep 08, 2022 pm 08:29 PM

怎么自定义angular-datetime-picker格式?下面本篇文章聊聊自定义格式的方法,希望对大家有所帮助!

聊聊Angular Route中怎么提前获取数据聊聊Angular Route中怎么提前获取数据Jul 13, 2022 pm 08:00 PM

Angular Route中怎么提前获取数据?下面本篇文章给大家介绍一下从 Angular Route 中提前获取数据的方法,希望对大家有所帮助!

浅析Angular中的独立组件,看看怎么使用浅析Angular中的独立组件,看看怎么使用Jun 23, 2022 pm 03:49 PM

本篇文章带大家了解一下Angular中的独立组件,看看怎么在Angular中创建一个独立组件,怎么在独立组件中导入已有的模块,希望对大家有所帮助!

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)