0
我想調用一個函數,我在我的離子2選項卡內的打字稿/ Angular 2中寫入。我對打字稿很陌生,所以不完全知道它是如何工作的。如何在離子2中調用Angular 2中內置的函數?
當我試圖調用功能,控制檯提供了一個錯誤,說我寫的隨機化()函數不是一個函數...
This is a JSFiddle file這裏我把我的代碼。 '卡'部分完美無瑕,它只涉及我的隨機功能。 HTML:
<button fab class="card-subtitle">{{randomise(100,10000) | currency :'USD' : true}}</button>
TS:
export class randomNumber {
public number: number;
constructor (min: number, max: number){
this.randomise(min, max)
}
randomise(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
}
的實例調用
randomise
方法的方法你隨機數字類不是你的頁面/組件的一部分。創建一個類的實例並調用它。因此,新的randomNumber()。randomise(0,100)將起作用 – misha130