📜  js fetch catch 401 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:03.444000             🧑  作者: Mango

代码示例1
fetch("some-url")
    .then(function(response)
     {
      if(response.status!==200)
       {
          throw new Error(response.status)
       }
     })
    .catch(function(error)
    {
      ///if status code 401...
    });