有什麼方法可以自動將組件的輸入轉換爲數字嗎?在Angular2中投入數字?
例如該組件初始化像這樣:
<list-of-playlists limit="5"></list-of-playlists>
這裏定義:
@Component({
selector: 'list-of-playlists',
templateUrl: 'list-of-playlists.html'
})
export class MyPlaylistComponent implements OnInit {
@Input() limit: number;
ngOnInit() {
console.log(typeof limit); // string
}
}
有沒有辦法投limit
自動數字或整數?
不然我必須鍵入是如Typescript
字符串或任何,或通過將其流延在ngOnInit()
一個數,這是我想避免啓動組件。
輝煌。謝謝。 – skovmand