如何将从后端返回的Json数组保存到Angularjs中的Excel文件中?
这是连接到后端的查询。它应该返回一个Excel文件,但不知何故它返回一个Json数组。
curl -o orders.xlsx --header“Authorization:xxxxxxx”--header“application / vnd.openxmlformats-officedocument.spreadsheetml.sheet”''
我找到了这个样本http://jsfiddle.net/potatosalad/yuM2N/,但它并没有完全符合我的需要。特别是,它将Json转换为String,而Json不是数组。
如果我将前三行更改为
var data = [{a:1}, {b:2}, {c:3}];
var blob = new Blob([data], {type: "application/json"});
输出内容为:
[object Object],[object Object],[object Object]