gpt4 book ai didi

jquery - Google Apps 脚本 (GAS) - 创建 ContentService API 以提供来自 Google Drive 的 JSON 数据

转载 作者:行者123 更新时间:2023-12-01 08:13:47 25 4
gpt4 key购买 nike

仍在尝试弄清楚 Google IO 2012 上推出的所有新内容。关于 GAS 和 ContentService,您应该能够创建一个 API 来提供您的内容(来自 Google Drive)。一个简单的例子如下:

var jsonData = {
"firstName": "John",
"lastName": "Smith",
"age": 25,
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021"
},
"phoneNumber": [
{
"type": "home",
"number": "212 555-1234"
},
{
"type": "fax",
"number": "646 555-4567"
}
]
}

function doGet(e) {

var output = ContentService.createTextOutput();
output.setMimeType(ContentService.MimeType.JSON);
output.setContent(jsonData);

return output;

}

然后从一个普通的网页,希望使用 jQuery Ajax,你应该能够获取 Json 数据?

简单的 javascript 代码在普通(非 GAS)客户端上会是什么样子?

最佳答案

看看JSONP看看它应该是什么样子

此外,它应该是 output.setContent(JSON.stringify(jsonData));

关于jquery - Google Apps 脚本 (GAS) - 创建 ContentService API 以提供来自 Google Drive 的 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11962825/

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