无法读取未定义的"xxx"的属性



我正在使用离子2,其中组件具有两个组件,并且使用发射器共享数据。但是,当我执行程序时,会遇到此错误。

运行时错误未被发现(在承诺中(:TypeError:无法读取属性 未定义的typeError的" Billno":无法阅读财产的" Billno" 在object.eval [as UpdateDirectives]

不确定

这是我的代码:

bill-settlement.html

...
<page-bill-list (BillSelected)="onBillSelected($event)"></page-bill-list>
...
<page-bill-details [billItem]="billItem"></page-bill-details>
...

bill-settlement.ts

@Component({
  selector: 'page-bill-settlement',
  templateUrl: 'bill-settlement.html',
})
export class BillSettlement {
  ...
  billItem: BillDetail
  ...
  onBillSelected(billData: BillDetail) {
    this.billItem = billData
  }
}

bill-list.html

<ion-buttons>
  <button ion-button *ngFor="let item of billItems" (click)="getBillDetails(item)">
      {{item.BillNo}}
  </button>
</ion-buttons>

bill-list.ts

@Component({
  selector: 'page-bill-list',
  templateUrl: 'bill-list.html',
})
export class BillList {
  billItems: BillDetail[] = []
  billItem = new BillDetail()
  @Output() BillSelected = new EventEmitter<BillDetail>()
  constructor(public navCtrl: NavController,
    public navParams: NavParams,
    public billSrv: BillerService,
    public authSrv: AuthService,
    public genSrv: GenericService) {
    this.billSrv.getBills()
      .subscribe(data => {
        this.billItems = data
      })
  }
  getBillDetails(item: BillDetail) {
    this.BillSelected.emit(this.billItem)
  }
}

bill-details.ts

@Component({
  selector: 'page-bill-details',
  templateUrl: 'bill-details.html',
})
export class BillDetails {
    ...
    @Input() billItem: BillDetail
    ...
}

bill-details.html

...
<ion-input text-right type="text" [value]="billItem.BillNo" readonly></ion-input> //billItem model has BillNo property
...

问题是bill-details.ts中的billItem.BillNo最初没有值,仅在我单击bill-list.html中的帐单号码按钮时才能定义。我如何最初定义Billitem,然后在单击"账单号"按钮时替换。

设置billItem之前已加载视图。

您可以使用安全的导航操作员?

<ion-input text-right type="text" [value]="billItem?.BillNo" readonly></ion-input> //billItem model has BillNo property

或将其设置为 bill-details.ts 的构造函数中的空对象:

constructor(...){
  if(! this.billItem){
    this.billItem={}
  }
}

相关内容

  • 没有找到相关文章

最新更新