发现不能直接像在 node 中 require('xlsx')
曲线救国,只能把整一个改好的 xlsx 重写
const url = "https://github.com/xxx/xxx.xlsx";
const myRequest = {
url: url
};
$task.fetch(myRequest).then(response => {
$done({bodyBytes: response.bodyBytes});
}, reason => {
$done();
});
不知道还有没有更好的方法,毕竟 xlsx 文件会更新