1
我有兩個組件的網頁上:角2次訪問組件
Page({
template: '<ion-navbar *navbar class="contact_navbar">
<ion-title>Loan Calculator</ion-title>
</ion-navbar>
<ion-content><ck-auto-loan-calculator type="normal"></ck-auto-loan-calculator></ion-content><ck-keypad id="keypad"></ck-keypad>',
directives: [[ckAutoLoanCalculator], [Keypad]]
})
export class LoanCalculator {}
現在CK-汽車貸款計算器裏我有了一個按鈕:(click)="showKeypad()"
的showKeypad使用()函數具有let k = this.app.getComponent('keypad');
並且這訪問<ck-keypad>
部件
現在,因爲離子改變爲7的β和角度改變爲RC時,得到下面的錯誤: 原始異常:TypeEr ror:無法讀取未定義的屬性'setControl'
如何在Ck-auto-loan-calculator組件中訪問鍵盤組件?
謝謝