這是我想要執行,並在app.component.ts我需要執行一個功能每x秒角2和打字稿
public goLocalization() :void {
this.localizationService.getLocalizationHttp().then(response => {
localStorage.setItem("locatios", JSON.stringify(response));
});
console.log('goLocalization');
}
從這裏我正在呼叫的功能,但它不執行,它使一個錯誤
<body onLoad="setInterval('goLocalization()',1000);"></body>
這是錯誤
Uncaught ReferenceError: goLocalization is not defined
at <anonymous>:1:1
爲什麼不在應用程序組件類的'ngOnInit'中? – jonrsharpe
您應該使用(加載)='...'作爲角度上下文。 – rjustin
如果我已經可以使用OnInit接口找到解決方案並在函數ngOnInit(){} –