gpt4 book ai didi

javascript - 如何从谷歌电子表格中提取数据到网站?

转载 作者:行者123 更新时间:2023-11-27 23:39:33 24 4
gpt4 key购买 nike

有一个公开分享的google spreadsheet with price data .

有一种查询语言,我们可以从中提取特定数据,例如把这个 query进入浏览器地址字段。这样我们就得到了第一个项目的价格。

有哪些简单的方法可以将它插入到特定网页的特定位置?

真的只有 javascript/jquery 才能做到这一点吗?

最佳答案

使用桌面库 https://github.com/jsoma/tabletop你可以这样做:

<script type="text/javascript">
window.onload = function() { init() };

var public_spreadsheet_url = 'https://docs.google.com/spreadsheet/pub?hl=en_US&hl=en_US&key=0AmYzu_s7QHsmdDNZUzRlYldnWTZCLXdrMXlYQzVxSFE&output=html';

function init() {
Tabletop.init( { key: public_spreadsheet_url,
callback: showInfo,
simpleSheet: true } )
}

function showInfo(data, tabletop) {
alert("Successfully processed!")
console.log(data);
}
</script>

关于javascript - 如何从谷歌电子表格中提取数据到网站?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32273362/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com