热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

利用GoogleSheets自定义函数实现Ajax调用-ExecutingAjaxRequestsviaGoogleSheetsCustomFunctions

本文探讨了如何在GoogleSheets中通过自定义函数实现AJAX调用。具体介绍了编写脚本的方法,以便在电子表格中发起AJAX请求,从而实现数据的动态获取与更新。这种方法不仅简化了数据处理流程,还提高了工作效率。

Hey guys have anyone of you ever tried to write a script inside a Google Spreadsheet to make an ajax call to a website. I want to make it so that the spreadsheet updates itself from the website. But after just putting this short block of code, I get thrown an error: "ReferenceError: "XMLHttpRequest" is not defined." Any help guys? Do I have to call a certain library?

嘿伙计们,你们中的任何人都试过在Google电子表格中写一个脚本来对网站进行ajax调用。我想这样做,以便电子表格从网站更新自己。但是在刚刚放入这么短的代码块之后,我就会抛出一个错误:“ReferenceError:”XMLHttpRequest“没有被定义。”有帮助吗?我必须打电话给某个图书馆吗?

xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET", eventObject[1], true);
xmlhttp.send();

1 个解决方案

#1


6  

Google Apps Script does not support XMLHttpRequest() natively, but as you suspected there are services that can accomplish the same thing.

Google Apps脚本本身不支持XMLHttpRequest(),但正如您所怀疑的那样,有些服务可以完成同样的事情。

Look at UrlFetch Services, Class Xml (deprecated) and Xml Services.

查看UrlFetch Services,Class Xml(不建议使用)和Xml Services。

One of the apps script tutorials (Accessing Picasa Web Albums through Apps Script) covers the use of these services, and would be a good place for you to start.

其中一个应用程序脚本教程(通过Apps脚本访问Picasa网络相册)涵盖了这些服务的使用,并且是您开始使用的好地方。


推荐阅读
author-avatar
www
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有