作者:www | 来源:互联网 | 2024-11-01 09:54
本文探讨了如何在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 个解决方案