Vue.js第四天学习笔记

前端之家收集整理的这篇文章主要介绍了Vue.js第四天学习笔记前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

分享一段将json数组数据以csv格式导出的代码:

html:

导出

js:

function to2(num) {
return num > 9 ? num : '0' + num;
}
a.download = '进货信息导出' + now.getFullYear() + to2((now.getMonth() + 1)) + to2(now.getDate()) + to2(now.getHours()) + to2(now.getMinutes()) + to2(now.getSeconds()) + '.csv';
a.href = csvUrl;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/vue/43955.html

猜你在找的Vue相关文章