我如何使用Tabulator的downloadReady:回调函数?

时间:2019-10-11 12:10:42

标签: javascript node.js excel tabulator

如何正确使用String.Format以便将xlsx文件上传到服务器端?

发送文件之前应在客户端进行哪些准备工作?例如转换为Uri?将文件解码到服务器端需要什么步骤?从Uri到xlsx文件。

fileContents 返回由[[Int8Array]]和[[Uint8Array]]组成的ArrayBuffer(){}。 和 blob 返回数据类型。

目标是从客户端获取文件并将其上传到服务器(node.js),然后使用fs.write()本地保存。

如果您有任何代码段,将有助于您实现这些步骤!

谢谢!

更新 我用过的没有成功! 客户侧

downloadReady:function(fileContents, blob){}

服务器端

downloadReady:function(fileContents, blob){

var xlsxObject = new Object;
xlsxObject.data = fileContents;
sendObjectToServer(xlsxObject);

return blob;
},

文件已写入,但值为空,但未定义

[已解决]

我终于找到了解决方案,如果您有兴趣,请查看此post

0 个答案:

没有答案