Vue.js第四天学习笔记
发布时间:2020-12-17 03:07:34 所属栏目:百科 来源:网络整理
导读:分享一段将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(no
分享一段将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); } 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |