Symbol: AAPL,Company: ABC ,Price: 132.54 (nextline)
Symbol: SDF,Company: ZX Corp,Price: 132.54(nextline)
答案 0 :(得分:0)
您可以使用以下
var data = "data:text/csv;charset=utf-8,name1,city1,some other infoname2,city2,more info"
var data = "data:text/csv;charset=utf-8,name1,city1,some other infoname2,city2,more info";
var encodedUri = encodeURI(data);

<a href="file" download="file.scv">Download</>
&#13;
您可以在变量中包含上述数据,以便在变量中包含数据后将其转换为CSV。
var encodedUri = encodeURI(data);
window.open(encodedUri);