2017-12-31 32 views
-4

角度4(サービスからの応答)で404例外処理を処理し、ポップアップを使ってHTMLページに表示する方法は?角4で404例外処理を処理する方法

+0

を購読使用してそれを作ることができ、あなたが自分で何かをしようとしたことがありますか? – HDJEMAI

+0

私の試行はうまくいった。 –

+0

あなたが質問に何をしようとしたかを追加し、あなたの懸念事項は何かを説明し、あなたの質問はそのように人々のためにもっと面白くなるでしょう。 – HDJEMAI

答えて

0

任意のHTTPリクエストを誤る、3つの方法 データを受信して​​、完全な あなたは方法

serviceRequest.subscrbe(
    data => { 
     /// here if the request done with no error 
    }, 
    err => { 
     /// here the function that you want you can check the status of the 
     ///error 
     if(err.status == ...) { 
     /// you can check for any status like 404 not found 
     } 
    }, 
    complete => { 
     /// and this function will be called if the subscription is done and 
     /// you will not need it here 
    } 
)