向数据库发送请求(谷歌表)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向数据库发送请求(谷歌表)相关的知识,希望对你有一定的参考价值。
我在google工作表中创建了一个脚本。它在Google表格(有点数据库)中提供了我的表格中的单元格结果。我希望结果发送到我的html页面,到目前为止我已尝试使用XMLHttprequest但没有成功。
我做错了什么?
这是Script
<script>
function load() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML = this.responseText;
}
};
xhttp.open("GET", "https://script.google.com/macros/s/AKfycby5RzvUWSEOjerJpouxN72wpsgpsF8IWQo2AvjZUdRPcqskz28/exec", true);
xhttp.send();
}
</script>
<html>
<body>
<h1>Members:</h1>
<button type="button" onclick="load()">Request data</button>
<p id="demo"></p>
</body>
</html>
答案
要从谷歌阅读电子表格:
- 下载一个名为Tabletop的脚本并将其添加到您的HTML中。 (自述文件是here)
- 在Google Docs中,转到
File
菜单并选择Publish to the web
。然后单击Start publishing
。将出现一个URL,类似于https://docs.google.com/spreadsheet/pub?hl=en_US&hl=en_US&key=0AmYzu_s7QHsmdDNZUzRlYldnWTZCLXdrMXlYQzVxSFE&output=html
,即您将使用的URL。 - 然后用它调用它:
<script type="text/javascript">
var public_spreadshseet_url = 'https://docs.google.com/spreadsheet/pub?YOUR_URL_HERE';
// YOUR_URL_HERE sample: hl=en_US&hl=en_US&key=0AmYzu_s7QHsmdDNZUzRlYldnWTZCLXdrMXlYQzVxSFE&output=html
// You get this URL from google docs after you publish the spreadsheet
function init()
{
Tabletop.init(
{
key: public_spreadshseet_url,
callback: showInfo,
simpleSheet: true
})
}
// This function gets called to give output
function showInfo(data)
{
alert("Successfully processed!")
console.log(data); <-- Here is the spreadsheet data
}
</script>
<html>
<body>
<h1>Members:</h1>
<button type="button" onclick="init()">Request data</button>
<p id="demo"></p>
</body>
</html>
以上是关于向数据库发送请求(谷歌表)的主要内容,如果未能解决你的问题,请参考以下文章