


When I was implementing a feature at work recently, I encountered a small problem: AngularThe component cannot get the @Input input attribute. Although I am relatively familiar with these problems, it is necessary to find the problem. It’s a process, so I’ll summarize and record this issue.
[Related tutorial recommendation: "angular tutorial"]
I need to give a ComponentSet an input attribute@Input, okay, just code it, it’s not difficult.
The original code is like this:
@Component({ selector: 'my-menu', templateUrl: './main-menu.widget.html' }) export class MyMenuWidget { data: any[]; ... constructor(...) { this._changesSubscription = this._service.changes.pipe( map((data: any[]) => { ... return data; }) ).subscribe((data: any[]) => { this.data = data; }); } ... }
Add an input attribute:
@Component({ selector: 'my-menu', templateUrl: './main-menu.widget.html' }) export class MyMenuWidget { @Input() isMainMenu: boolean = false; data: any[]; ... constructor(...) { this._changesSubscription = this._service.changes.pipe( map((data: any[]) => { ... return data; }) ).subscribe((data: any[]) => { if (this.isMainMenu) { this.data = data.filter((d: any) => d.ID === 233); } else { this.data = data; } }); } ... }
Use it:
<my-menu [isMainMenu]="mainMenu"></my-menu>
Then I found that the input attribute isMainMenu in MyMenuWidget could never get the value. Is there something wrong with the spelling? I checked it and found that there was no problem at all, but I just couldn't get the value.
Take a closer look, ahhhh? ? ? , the subscription to an Observable is actually written in the constructor! ! ! Although writing this way can work normally in some scenarios and does not affect the function of the code, this way of writing is very irregular, causing problems just like the code in the example above. Therefore, during normal development, it is not recommended to write like this. So what is the correct way to write it?
Upload the code.
@Component({ selector: 'my-menu', templateUrl: './main-menu.widget.html' }) export class MyMenuWidget { @Input() isMainMenu: boolean = false; data: any[]; ... constructor(...) { ... } ngOnInit() { this._changesSubscription = this._service.changes.pipe( map((data: any[]) => { ... return data; }) ).subscribe((data: any[]) => { if (this.isMainMenu) { this.data = data.filter((d: any) => d.ID === 233); } else { this.data = data; } }); } ... }
Then the question is, why can the same code work normally when placed in ngOnInit? Some people will say that we should just put it in ngOnInit, but not in the constructor. So why not, needs to be figured out.
The question is, what is the difference between the Angular constructor and the ngOnInit function?
Difference 1
Language difference:
Let’s first look at their differences from a language perspective. ngOnInit is just a method on the component class. The structure is no different from other methods on the class, except that it has a specific name.
export class MyMenuWidget implements OnInit { ngOnInit() {} }
It’s okay to implement it or not. I can still write it like this, no problem at all. No explicit markup needs to implement this interface.
export class MyMenuWidget { ngOnInit() {} }
This is how to write ES6. How to write the above code in ES5?
The constructor is completely different from it. It will be called when creating a class instance.
export class MyMenuWidget { constructor(){} ngOnInit() {} }
Difference 2
Difference in component initialization process:
From the perspective of component initialization, the difference between the two is still very big. Angular's startup process has two main stages:
1. Construct the component tree; 2. Perform change detection;
When Angular constructs the component tree, it needs to create a component instance. First The constructor new will be called to create an instance, which is to call the constructor of the component class. All lifecycle hooks including ngOnInit are then called as part of the change detection phase.
When Angular starts change detection, the component tree has been built and the constructors of all components in the tree have been called. Additionally, each component's template node is added to the DOM at this point. Here you have access to all the data you need to initialize the component - DI provider, DOM, etc. The @Input communication mechanism is handled as part of the change detection phase, so @Input is not available in the constructor.
export class MyMenuWidget { constructor(private _elementRef: ElementRef){ ... } ngOnInit() {} }
Difference three
Functional difference:
For Angular constructor, it is mainly used for initialization and injection Dependencies. The usual approach is to put as little logic as possible into the constructor. Sometimes, even though you put a lot of logic, it does not affect the functionality.
For ngOnInit, Angular creates the DOM of the component, uses the constructor to inject all necessary dependencies, and calls ngOnInit after completing the initialization. This is a good place to execute component initialization logic.
Simply put , constructorThe constructor itself has nothing to do with Angular, ngOnInitThese hook functions are defined in Angular.
Summary
Now is it clear why @Input cannot get the value in the constructor? In the future, it will be clear which logic should be placed in the constructor and which should be placed in ngOnInit.
For more programming-related knowledge, please visit: Programming Teaching! !
The above is the detailed content of Angular development problem record: Component cannot get the @Input input attribute. For more information, please follow other related articles on the PHP Chinese website!

本篇文章带大家继续angular的学习,简单了解一下Angular中的独立组件(Standalone Component),希望对大家有所帮助!

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

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

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

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

本篇文章带大家了解一下依赖注入,介绍一下依赖注入解决的问题和它原生的写法是什么,并聊聊Angular的依赖注入框架,希望对大家有所帮助!

本篇文章带大家深入了解一下angular中的几个特殊选择器:host、:host-context、::ng-deep,希望对大家有所帮助!

Component是Directive的子类,它是一个装饰器,用于把某个类标记为Angular组件。下面本篇文章就来带大家深入了解angular中的@Component装饰器,希望对大家有所帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version
Chinese version, very easy to use
