从Google电子表格导入数据库

时间:2017-11-03 21:34:52

标签: javascript php jquery html wordpress

我从Google电子表格导入单元格文本,然后使用以下代码插入WordPress上的帖子。但我有超过300个值。所以,我想知道是否有更轻松的方式导入它,而不是300多次处理长表网址。 它也可以在php中,所以我会在我的page.php文件中插入,但我不知道该怎么做。



jQuery.ajax("https://docs.google.com/spreadsheets/d/e/2PACX-1vQhp9yFq8eXagN03gn-mCN3_KPWRc2EIpswDFpHJLflFOG-XU2OMktqj03gxvUBZMAp8gYwWO5Q3MVJ/pub?gid=942917560&single=true&range=c3&output=csv").done(function(txt1){
               jQuery("#text1").html(txt1);
});

jQuery.ajax("https://docs.google.com/spreadsheets/d/e/2PACX-1vQhp9yFq8eXagN03gn-mCN3_KPWRc2EIpswDFpHJLflFOG-XU2OMktqj03gxvUBZMAp8gYwWO5Q3MVJ/pub?gid=942917560&single=true&range=c4&output=csv").done(function(txt2){
               jQuery("#text2").html(txt2);
});

jQuery.ajax("https://docs.google.com/spreadsheets/d/e/2PACX-1vQhp9yFq8eXagN03gn-mCN3_KPWRc2EIpswDFpHJLflFOG-XU2OMktqj03gxvUBZMAp8gYwWO5Q3MVJ/pub?gid=942917560&single=true&range=c5&output=csv").done(function(txt3){
               jQuery("#text3").html(txt3);
});

<div id='text1'></div>
<div id='text2'></div>
<div id='text3'></div>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

嗯,首先,为什么要拨打300电话到电子表格?只需拨打一个电话,即可获得您关心的细胞。 URL single中有一个参数,将其设置为false,然后传入所需的单元格范围。

但由于我不知道那些细胞是什么,我想你可以做到:

function getCell(cell, id) {
    var url = "https://docs.google.com/spreadsheets/d/e/2PACX-1vQhp9yFq8eXagN03gn-mCN3_KPWRc2EIpswDFpHJLflFOG-XU2OMktqj03gxvUBZMAp8gYwWO5Q3MVJ/pub?gid=942917560&single=true&range=" 
               + cell + "&output=csv";
    jQuery.ajax(url).done(function(t){
           $(id).html(t);
    });
}

for (var i = 0; i < 300; i++) {
    var cell = 'c' + (i+3);      //first iteration: "c3"
    var dest = '#text' + (i+1);  //first iteration: "#text1"
    getCell(cell, dest);
}