我試圖隱藏其他鏈接,當單擊其中一個鏈接時,我已嘗試在組件中使用「Viewchild」來訪問名稱屬性的錨標籤。請在組件中找到下面的代碼。無法獲取未定義的屬性'nativeElement'或空參考角度2
import { Component, ElementRef, ViewChild } from '@angular/core';
@Component({
selector: 'my-app',
template: `<h1>My First Angular App</h1>
<div style="float:right;">
<a routerLink="First" *ngIf="!isOn" (click)="setState(first)" let name="first">First</a> |
<a routerLink="Second" *ngIf="!isOn" (click)="setState(second)" let name="second">Second</a> |
<a routerLink="Third" *ngIf="!isOn" (click)="setState(third)" let name="third">Third</a> |
<a routerLink="Fourth" *ngIf="!isOn" (click)="setState(fourth)" let name="fourth">Fourth</a>
</div>
<br/>
<div>
<router-outlet></router-outlet>
</div>
`
})
export class AppComponent {
private isOn: boolean = false;
private trst: string;
@ViewChild('name') input3: ElementRef;
ngAfterViewInit() {
console.log(this.input3.nativeElement);
}
setState(e: any): void {
var native = this.input3.nativeElement; //throws error here
var myattr = native.getAttribute("input3");
alert("my attribute value is from click : " + myattr);
this.trst = this.input3.nativeElement.value;
alert(this.trst);
alert(e);
if (this.trst == e)
{
this.isOn = false;
}
else
{
this.isOn = true;
}
}
}
什麼是錯上面的代碼訪問的元素與viewchild,有沒有在那裏我可以訪問定位標記的name屬性值的任何其他方式?
我試着跟隨下面的鏈接來解決,但在解決問題
@viewChild not working - cannot read property nativeElement of undefined
你需要通過id引用..其中是你的html中設置的id? –
另外,setState在哪裏調用?確保只在viewInit之後調用它。 – EluciusFTW
爲什麼你首先需要訪問本地元素?最有可能比訪問dom元素更好的解決方案。你想達到什麼目的? –