有一个公开共享的google spreadsheet with price data。
有一种查询语言,我们可以从中提取特定数据,例如将此query放入浏览器地址字段。
通过这种方式,我们获得了第一件商品的价格。
在确定的网页的确定位置插入它可能有什么大惊小怪的方法?
确实只有javascript / jquery可以使这项工作有效吗?
最佳答案
使用Tabletop库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>