私は2番めに新しいです。私はapp.componentでsetTimoutを使いたいと思います。私は他の多くの記事を参照しようとしたが、何も私のために働いた。角2:SetTimout
以下は、私が試していたコードです。例を挙げて助けてください。
catchError(){
if(navigator.onLine){
console.log("connected");
this.displayNetworkError = false;
}
else{
console.log("Disconnected");
this.displayNetworkError = true;
}
};
internetConnection(){
setTimeout(this.catchError(), 2000);
};
を 'のsetTimeout(()を使用し=> this.catchError()、2000) ';あなたは何か* callable *ではなく、何かを渡します。 – jonrsharpe