`npm install frontend-sniper-explorer --save`
`import explorer from 'frontend-sniper-explorer'`
||
`<script src="https://github.com/callmesoul/frontend-sniper-explorer/blob/master/lib/frontend-sniper-explorer.js"></script>`
explorer.start({
submitUrl:'http://127.0.0.1:7001/api/errors',//后台提交错误api,只需改对应域名即可
sendError:(e)=>{
fetch(this.submitUrl,{//后台提交错误api,只需改对应域名即可
method: "POST",
headers: {
'Content-Type': 'application/json',
'appId':'f9ed9f90-3b21-11e9-8bb4-156d2c6ff87c',//在frontend-sniper-admin管理后台创建应用的appId
'appScrect':'f9ed9f91-3b21-11e9-8bb4-156d2c6ff87c' //在frontend-sniper-admin管理后台创建应用的appScrect
},
body:JSON.stringify(e),
})
.then(res => {
// console.log(res)
})
.catch(error => console.error('Error:', error));
}
});
MIT © CallMeSoul