标签: javascript fetch-api
有没有办法在代码中设置一个中心位置来处理javascript的fetch api会话超时/错误?
我正在寻找类似的东西:
addEventListenter('fetch', function (event) { if (event.response === 401) { console.log('*** session timeout'); } });
此代码不起作用BTW