本帖最后由 前端工程师 于 2018-9-9 18:41 编辑
调用的代码如下
downloadfile(){
var fileName = 'test';
var password = '';
var json = this.$refs.spreadtable.spread.toJSON();
console.log(excelIo);
console.log(json);
// here is excel IO API
excelIo.save(json, function (blob) {
//saveAs(blob, fileName); 没有进到这里
}, function (e) {
// process error 直接从这里打印出 [size=26.6667px]文件格式错误
console.log(e);
}, {password: password});
},
|
|