前言
数据相关网站有时需要提供数据下载链接,以便于用户下载数据。网页上尝试用json数据,但是用户
环境
- Windows10
- jquery2.1.4
方法
- HTML文件中加入下载标签
- <!-- 下载链接 -->
- <div id="download"></div>
- 假设已有json数据ret:
ret = [{name: "motor1", temp1: 48, temp2: 49, time: "2018-05-17 10:21:53", length: 10}, {name: "motor1", temp1: 48, temp2: 48, time: "2018-05-17 10:21:30", length: 10}, {name: "motor1", temp1: 64, temp2: 48, time: "2018-05-15 16:52:50", length: 10}, {name: "motor1", temp1: 64, temp2: 48, time: "2018-05-15 16:52:49", length: 10}, {name: "motor1", temp1: 64, temp2: 48, time: "2018-05-15 16:52:47", length: 10}, {name: "motor1", temp1: 64, temp2: 48, time: "2018-05-15 16:52:46", length: 10}, {name: "motor1", temp1: 64, temp2: 64, time: "2018-05-15 16:52:36", length: 10}, {name: "motor1", temp1: 64, temp2: 64, time: "2018-05-15 16:51:55", length: 10}, {name: "motor1", temp1: 64, temp2: 70, time: "2018-05-15 16:19:53", length: 10}, {name: "motor1", temp1: 64, temp2: 72, time: "2018-05-15 16:18:18", length: 10}] 1 2 3 4 5 6 7 8 9 10 11
- 使用json转csv的库json2csv, 下载后导入库
- <script src="/static/js/json2csv.js" type="text/javascript"></script>
- json数据转cvs并生成下载链接
- <script>
- var myData = [],
- length = 10;
- // 我的json数据从后端传过来的,需要导入一下,否则读不到,大家根据情况使用,可删掉
- for(var i = 0; i<length; i++){
- myData.push(ret[i]);
- }
- // 将json数据转化为csv
- var fields = ['name', 'temp1', 'temp2', 'time'];
- var result = json2csv({ data: myData, fields: fields });
- // 创建下载链接
- var data = "data:text/csv;charset=utf-8," + encodeURIComponent(result); // 格式化数据
- var aa = $("<a></a>").text("下载数据"); // 创建<a>标签
- aa.attr('href', data); // 给<a>标签添加href属性
- aa.attr('download', 'data.csv'); // 给<a>标签创建download属性
- $("#download").append(aa); // 插入标签
- </script>
本文暂时没有评论,来添加一个吧(●'◡'●)