ngIf with viewchild



我是Angular2的新手,而不是专业。当用户单击一个按钮时,我想要的父母组成部分,儿童组件的选择器显示一些东西。因此,它应该是条件,也应从子部分中使用。这是我的代码:父html:

<div *ngIf="page2">
      <add-property-page2></add-property-page2>
    </div>
    <div class="text-center col-sm-12">
      <button [disabled]="!propertyForm.form.valid"
              (click)="onSubmit($event,value,amlak)"
              type="submit" class="btn btn-success">Continue
      </button>
    </div>

和父组件:

import {Component, OnInit, ViewChild, ViewEncapsulation, Input } from '@angular/core';
import {Amlak} from '../models/amlak';
import {AddPropertyPage2Component} from './add-paroperty-page2.component';
@Component({
 selector: 'add-property',
 styleUrls: ['./selection.css'],
 templateUrl: './add-property.html',
 providers: [DataService, Amlak],
 })
export class AddPropertyComponent  {
private page2: boolean;
@ViewChild(AddPropertyPage2Component)
private addPropertyPage2: AddPropertyPage2Component;
constructor(private amlak: Amlak, private dataService: DataService
) {
this.userLogined = AuthenticationService.check();
 }
onSubmit($event:any,value,amlak) {
$event.preventDefault();
if (this.page2) {
  this.amlak.emkanat = this.addPropertyPage2.emkan.filter(e => e.checked == 
 true);
 }
}

现在我的问题是,当用户单击用户时,这是在父母中显示孩子选择器的最简单方法。因为错误是:无法读取未定义的属性" emkan"。我知道这是因为 *ngif,但不知道该怎么办。另外,我应该说我可以在代码中使用类似的方法。谢谢您的帮助。

您的问题年龄大一些,但我有同样的问题,也许我可以帮助别人回答。

*NGIF从DOM中删除HTML元素,因此ViewChild找不到DOM中的元素。

首先,我想使用NGShow指令。但是在Angular 5中,它不再存在。但是在版本5中,您可以轻松地绑定到[隐藏]属性,这不会从DOM中删除元素,而是隐藏它,就像NGShow指令和ViewChild可以再次找到元素。

相关内容

  • 没有找到相关文章

最新更新