前世身份
时代
本服务仅供娱乐和文化探索,不构成任何专业建议。上传的照片将在24小时后自动删除。
// 前端错误上报(静默)
(function(){
window.addEventListener('error', function(e){
try {
fetch('/api/client-error', {method:'POST', headers:{'Content-Type':'application/json'},
body: JSON.stringify({msg: String(e.message||'').slice(0,200), url: location.pathname}),
keepalive: true});
} catch(err) {}
});
window.addEventListener('unhandledrejection', function(e){
try {
fetch('/api/client-error', {method:'POST', headers:{'Content-Type':'application/json'},
body: JSON.stringify({msg: String(e.reason||'').slice(0,200), url: location.pathname}),
keepalive: true});
} catch(err) {}
});
})();