Jex

Results 2 comments of Jex

```js protected async excel文件下载(url: string, payload: any) { const getBuffer = new Promise((resolve, reject) => { this.page.once('response', async (response) => { if (!response.url().includes(url)) return; try { const buffer = await...

我的理解,gist是做一个备份的作用: 1. 用户点击同步按钮后,调用 gist api 把数据保存上去(覆盖保存); 2. 当用户清空浏览器时,也就是数据库不存在,读取gist的数据,把数据同步到本地读取。